summaryrefslogtreecommitdiff
path: root/client/consts.js
blob: 242857d4a85b50cd9c0ae2245ee6fde38208fca2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// game settings
const WIDTH     = 500;
const HEIGHT    = 500;


// directions
const DIR_DOWN  = 0;
const DIR_LEFT  = 1;
const DIR_UP    = 2;
const DIR_RIGHT = 4;




// error codes
const CONNECTION_LOST = 10001;