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 city;
6pub mod infrastructure;
7pub mod military;
8pub mod npc;
9pub mod player;
10pub mod resources;
11
12pub mod prelude {
13 pub use super::behavior::*;
14 pub use super::city::*;
15 pub use super::infrastructure::*;
16 pub use super::military::*;
17 pub use super::npc::*;
18 pub use super::player::*;
19 pub use super::resources::*;
20}