[Games] Add Quake 3 support and change players frags from u16 to i16

This commit is contained in:
CosminPerRam 2023-05-30 16:23:37 +03:00
parent af5e0d1fbf
commit 06a2ceeda9
6 changed files with 16 additions and 2 deletions

View file

@ -12,7 +12,7 @@ use serde::{Deserialize, Serialize};
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct Player {
pub frags: u16,
pub frags: i16,
pub ping: u16,
pub name: String
}