mirror of
https://github.com/xtjoeytx/GServer-v2.git
synced 2026-05-06 23:59:39 -04:00
75393a0a1a
Sorted includes. Converted dependencies to brackets. Use relative path for includes.
12 lines
207 B
C++
12 lines
207 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <string>
|
|
|
|
bool parseArgs(int argc, char* argv[]);
|
|
void printHelp(const char* pname);
|
|
std::string getBaseHomePath();
|
|
void shutdownServer(int signal);
|
|
|
|
#endif // MAIN_H
|