forked from StrafesNET/strafe-project
13 lines
153 B
Rust
13 lines
153 B
Rust
|
pub enum Error{
|
||
|
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
BLOCK_DEMO_HEADER:
|
||
|
//timeline of loading maps, bots
|
||
|
*/
|
||
|
|
||
|
pub struct Demo{
|
||
|
map:Box<crate::map::Map>,
|
||
|
bots:Vec<crate::bot::Bot>,
|
||
|
}
|