diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-17 09:26:25 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-17 13:12:19 +0100 |
commit | 601474aa84cfc071c724051ac121e3c9cc796577 (patch) | |
tree | 058728022e968100e5a2314d5cc2e16de0f3bfee /src/shared.rs | |
parent | 4f9957fc6b4bdb4c7430f878101b07051b40a2ff (diff) |
feat: skillshots
Diffstat (limited to 'src/shared.rs')
-rw-r--r-- | src/shared.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared.rs b/src/shared.rs index 16cea60..a7a2d16 100644 --- a/src/shared.rs +++ b/src/shared.rs @@ -18,6 +18,7 @@ pub mod projectile; 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; |