开始进行一个实现

This commit is contained in:
shenjack-5600u 2024-05-02 12:54:52 +08:00
parent 6bc2637263
commit 5e292d0058
Signed by: shenjack
GPG Key ID: FDF9864E11C7E79F
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
pub mod runners {
pub struct PlayerGroup {
players: Vec<Player>,
}
pub struct Runner {
/// 应该是一个 Rc4 实例类似物
seed: u32,
/// 所有玩家 (包括 boss)
players: Vec<PlayerGroup>
}
}

View File

@ -1,5 +1,7 @@
/// 万里长征, 始于足下
mod name;
mod engine;
mod rc4;
fn main() {