1
0
Fork 1
mirror of https://github.com/MingweiSamuel/Riven.git synced 2025-03-17 12:13:16 -07:00
Riven/riven/src/consts/team.rs

19 lines
551 B
Rust
Raw Normal View History

2021-06-30 16:34:34 -07:00
use serde_repr::{ Serialize_repr, Deserialize_repr };
use num_enum::{ IntoPrimitive, TryFromPrimitive };
/// League of Legends team.
#[derive(Debug, Copy, Clone)]
#[derive(Eq, PartialEq, Hash, Ord, PartialOrd)]
#[derive(Serialize_repr, Deserialize_repr)]
#[derive(IntoPrimitive, TryFromPrimitive)]
#[repr(u16)]
2021-06-30 16:34:34 -07:00
pub enum Team {
/// Blue team (bottom left on Summoner's Rift).
BLUE = 100,
/// Red team (top right on Summoner's Rift).
RED = 200,
/// "killerTeamId" when Baron Nashor spawns and kills Rift Herald.
OTHER = 300,
2021-06-30 16:34:34 -07:00
}