aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared.rs
blob: 546ef4f1b63a194b034081e4eb3852411ca7a580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pub mod ability;
pub mod activation;
pub mod area_of_effect;
pub mod buffs;
pub mod champion;
pub mod cooldown;
pub mod damage;
pub mod faction;
pub mod health;
pub mod health_event;
pub mod immovable;
pub mod imperative;
pub mod minion;
pub mod name;
pub mod nexus;
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 PROTOCOL_ID: u64 = 0;
pub const SERVER_PORT: u16 = 16384;