1
2
3
4
5
6
/// Info on the number of players currently alive
#[derive(Copy, Clone, Debug)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct GamePlayersAlive {
	pub players: u16,
}