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