mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2024-12-27 03:16:33 +00:00
adding team enum
This commit is contained in:
parent
f671eea1bb
commit
57a37b5a0f
2 changed files with 8 additions and 1 deletions
|
@ -10,4 +10,7 @@ mod season;
|
|||
pub use season::*;
|
||||
|
||||
mod queue;
|
||||
pub use queue::*;
|
||||
pub use queue::*;
|
||||
|
||||
mod team;
|
||||
pub use team::*;
|
4
src/consts/team.rs
Normal file
4
src/consts/team.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
pub enum Team {
|
||||
Blue = 100,
|
||||
Red = 200,
|
||||
}
|
Loading…
Reference in a new issue