diff options
Diffstat (limited to 'src/shared.rs')
-rw-r--r-- | src/shared.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared.rs b/src/shared.rs index 8ec056d..3310c8c 100644 --- a/src/shared.rs +++ b/src/shared.rs @@ -17,14 +17,16 @@ pub mod champion; pub mod cooldown; pub mod health; pub mod health_event; +pub mod immovable; pub mod imperative; pub mod player; pub mod projectile; +pub mod shape; pub mod stats; +pub mod tower; pub const KEY: [u8; 32] = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ]; -pub const PLAYER_RADIUS: f32 = 10.; pub const PROTOCOL_ID: u64 = 0; pub const SERVER_PORT: u16 = 16384; |