mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
20 lines
813 B
Rust
20 lines
813 B
Rust
mod cubes_json;
|
|
pub use cubes_json::CubeConfig;
|
|
|
|
mod traits;
|
|
pub use traits::{ConfigProvider, DevMessageProvider, ServerConfig, GarageUpgrades, GarageUpgradeIncrement, ChatSystemConfig, GameEventSequence, GameEvents, GameRotationStrategy, GameEvent, GameMap, GameVisibility, GameType, SingleplayerConfig, VehicleInfo, VehicleDescriptor, QueueChangeMode, Point, Sphere, MapConfig, LinksConfig, FakePlayer, ClientEmulator, EnergyConfig, BattleArenaResolver, PitSettings, PitWinCondition, TeamDeathMatchSettings};
|
|
|
|
mod validation;
|
|
pub use validation::{SelfValidator, ValidationInfo, ValidationMessage};
|
|
|
|
mod campaign;
|
|
pub use campaign::{CampaignResolver, CompleteCampaignProvider};
|
|
|
|
pub type ConfigImpl = CubeConfig;
|
|
|
|
fn __must_impl<T: ConfigProvider<()>>() {}
|
|
|
|
fn __test_impl() {
|
|
__must_impl::<ConfigImpl>();
|
|
}
|