1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/rc_core/src/persist/config/mod.rs

14 lines
582 B
Rust
Raw Normal View History

2025-03-15 11:03:35 -04:00
mod cubes_json;
pub use cubes_json::CubeConfig;
2025-03-15 11:03:35 -04:00
mod traits;
2025-08-16 21:32:14 -04:00
pub use traits::{ConfigProvider, CompleteCampaignProvider, DevMessageProvider, ServerConfig, GarageUpgrades, GarageUpgradeIncrement, ChatSystemConfig, GameEventSequence, GameEvents, GameRotationStrategy, GameEvent, GameMap, GameVisibility, GameType, SingleplayerConfig, VehicleInfo, VehicleDescriptor, QueueChangeMode, Point, Sphere, MapConfig, LinksConfig, FakePlayer, ClientEmulator};
2025-03-15 11:03:35 -04:00
pub type ConfigImpl = CubeConfig;
fn __must_impl<T: ConfigProvider<()>>() {}
fn __test_impl() {
__must_impl::<ConfigImpl>();
}