This commit is contained in:
shenjack 2024-05-04 19:37:17 +08:00
parent 97cfc94234
commit 1d2dc42b0a
Signed by: shenjack
GPG Key ID: 7B1134A979775551
2 changed files with 11 additions and 1 deletions

View File

@ -13,5 +13,9 @@ pub mod runners {
seed: u32,
/// 所有玩家 (包括 boss)
players: Vec<PlayerGroup>,
/// 赢家
///
/// 也应该是一个队伍
winner: Option<PlayerGroup>
}
}

View File

@ -1,5 +1,7 @@
pub mod skills;
use crate::rc4::RC4;
pub struct PlayerStatus {
frozen: bool,
}
@ -46,7 +48,7 @@ pub enum PlayerType {
Boss,
/// 被特殊增强的玩家
///
/// 有一堆
/// 有一堆玩家都被增强了
Boost,
/// 标准测号用靶子
///
@ -97,4 +99,8 @@ impl Player {
}
pub fn update_player(&mut self) {}
pub fn step(&mut self, randomer: &mut RC4) {
}
}