gameServer2/src/utils.rs
author unc0rr
Sun, 01 Jan 2017 22:13:35 +0300
changeset 12126 4348997e502b
parent 12125 858bf4d04c54
child 12137 193dfdcb0620
permissions -rw-r--r--
Refactor code to add more structure to it
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
     1
use mio;
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
     2
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     3
pub const PROTOCOL_VERSION : i32 = 3;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
     4
pub const SERVER: mio::Token = mio::Token(1000000000 + 0);