Config.js 220 Bytes
Newer Older
1 2
var Config = {
  GAZE_SERVER_URL: "ws://localhost:8001/gaze",
3
  TARGET_FPS: 60,
4 5
  SCREEN_WIDTH: screen.width,
  SCREEN_HEIGHT: screen.height,
Alexander Bazo committed
6
  GAME_VERSION: "$VERSION",
7 8 9 10 11
};

Object.freeze(Config);

export default Config;