This commit is contained in:
ntr 2019-02-17 00:12:56 +11:00
parent 08e48d983e
commit 4a28ecd3fc
2 changed files with 7 additions and 1 deletions

View File

@ -656,7 +656,7 @@ struct VboxCombineMsg {
#[derive(Debug,Clone,Serialize,Deserialize)] #[derive(Debug,Clone,Serialize,Deserialize)]
pub struct VboxCombineParams { pub struct VboxCombineParams {
pub game_id: Uuid, pub game_id: Uuid,
pub indices: Vec<u8>, pub indices: Vec<usize>,
} }
// #[cfg(test)] // #[cfg(test)]

View File

@ -21,6 +21,12 @@ pub enum Var {
Red, Red,
Green, Green,
Blue, Blue,
Attack,
Block,
Stun,
Buff,
Debuff,
} }
#[derive(Debug,Clone,Serialize,Deserialize)] #[derive(Debug,Clone,Serialize,Deserialize)]