Skip to main content

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