Skip to main content

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