update team enum

This commit is contained in:
Mingwei Samuel 2019-10-25 19:54:29 -07:00
parent 9c4d3608eb
commit fdd1b1516c

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