24 lines
639 B
C++
24 lines
639 B
C++
#ifndef SRV_DEFINE_H__
|
|
#define SRV_DEFINE_H__
|
|
|
|
#include "../SQCSim-common/define.h"
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <cctype>
|
|
#include <string>
|
|
|
|
#define MAX_CONNECTIONS 16
|
|
#define ID_LIST_SIZE 127
|
|
#define SRV_MANUAL_SETUP true
|
|
|
|
const std::vector<std::string> DEATHMESSAGES = { "@ has gone to meet their maker.",
|
|
"@ has bit the dust, if you know what I mean.",
|
|
"@ has ceased to be.",
|
|
"@ is no more.",
|
|
"@ is like, super dead.",
|
|
"RIP, @.",
|
|
"So long, @, and thanks for all the lols!",
|
|
"@ has a bad case of being dead." };
|
|
|
|
#endif
|