diff --git a/src/consts/team.rs b/src/consts/team.rs index 6c6dcb7..92b806b 100644 --- a/src/consts/team.rs +++ b/src/consts/team.rs @@ -1,4 +1,9 @@ +#[derive(Debug, Copy, Clone)] +#[derive(Eq, PartialEq, Hash, Ord, PartialOrd)] +/// League of Legends team. pub enum Team { + /// Blue team (bottom left on Summoner's Rift). Blue = 100, + /// Red team (top right on Summoner's Rift). Red = 200, -} \ No newline at end of file +}