You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
434 B
C

#pragma once
#ifdef SERVER_ADDRESS
#error Don't define server address from the build system, use the build settings header
#endif
#ifdef DEBUG
#define SERVER_ADDRESS "127.0.0.1"
#define PROFILING
#define DEBUG_RENDERING
#define DEBUG_WORLD
#define UNLOCK_ALL
#define INFINITE_RESOURCES
#define NO_GRAVITY
#else
#ifdef RELEASE
#define SERVER_ADDRESS "207.246.80.160"
#else
#error Define either DEBUG or RELEASE
#endif
#endif