[server] Add console command stubs

This commit is contained in:
RD42
2023-11-01 21:30:19 +08:00
parent d7101d3a02
commit 40f38a892e
2 changed files with 81 additions and 0 deletions

View File

@ -5,6 +5,8 @@
#define DEFAULT_MAX_PLAYERS 50
#define DEFAULT_LISTEN_PORT 8192
#define ARRAY_SIZE(a) ( sizeof((a)) / sizeof(*(a)) )
// ------------
// VERSION INFO
// ------------
@ -21,6 +23,9 @@
#include <windows.h>
#include <time.h>
#else
#ifndef stricmp
#define stricmp strcasecmp
#endif
#endif
// --------