nil-core 0.4.15

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

pub use super::Infrastructure;
pub use super::building::academy::Academy;
pub use super::building::farm::Farm;
pub use super::building::iron_mine::IronMine;
pub use super::building::prefecture::Prefecture;
pub use super::building::quarry::Quarry;
pub use super::building::sawmill::Sawmill;
pub use super::building::silo::Silo;
pub use super::building::stable::Stable;
pub use super::building::wall::Wall;
pub use super::building::warehouse::Warehouse;
pub use super::building::workshop::Workshop;
pub use super::building::{Building, BuildingId, BuildingLevel, BuildingStats, BuildingStatsTable};
pub use super::requirements::InfrastructureRequirements;
pub use super::stats::InfrastructureStats;