nil-payload 0.5.6

Multiplayer strategy game
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) Call of Nil contributors
// SPDX-License-Identifier: AGPL-3.0-only

pub mod academy;
pub mod prefecture;
pub mod stable;
pub mod workshop;

pub mod prelude {
  pub use super::academy::*;
  pub use super::prefecture::*;
  pub use super::stable::*;
  pub use super::workshop::*;
}