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