nil_payload/request/cheat/mod.rs
1// Copyright (C) Call of Nil contributors
2// SPDX-License-Identifier: AGPL-3.0-only
3
4pub mod behavior;
5pub mod city;
6pub mod infrastructure;
7pub mod military;
8pub mod npc;
9pub mod player;
10pub mod resources;
11pub mod round;
12
13pub mod prelude {
14 pub use super::behavior::*;
15 pub use super::city::*;
16 pub use super::infrastructure::*;
17 pub use super::military::*;
18 pub use super::npc::*;
19 pub use super::player::*;
20 pub use super::resources::*;
21 pub use super::round::*;
22}