1 2 3 4 5 6 7 8 9 10 11 12 13
use naia_bevy_shared::Flag; pub struct ServerResource { pub ticker: Flag, } impl ServerResource { pub fn new() -> Self { Self { ticker: Flag::new(), } } }