update team enum

pull/5/head
Mingwei Samuel 2019-10-25 19:54:29 -07:00
parent 9c4d3608eb
commit fdd1b1516c
1 changed files with 6 additions and 1 deletions

View File

@ -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,
}