forked from Kolyah35/minecraft-pe-0.6.1
the whole game
This commit is contained in:
24
src/server/ArgumentsSettings.h
Executable file
24
src/server/ArgumentsSettings.h
Executable file
@@ -0,0 +1,24 @@
|
||||
#ifndef NET_MINECRAFT_WORLD_LEVEL__ArgumentsSettings_H__
|
||||
#define NET_MINECRAFT_WORLD_LEVEL__ArgumentsSettings_H__
|
||||
#include <string>
|
||||
class ArgumentsSettings {
|
||||
public:
|
||||
ArgumentsSettings(int numArguments, char** arguments);
|
||||
std::string getExternalPath();
|
||||
std::string getLevelName();
|
||||
std::string getServerKey();
|
||||
std::string getCachePath();
|
||||
std::string getLevelDir();
|
||||
bool getShowHelp();
|
||||
int getPort();
|
||||
private:
|
||||
std::string cachePath;
|
||||
std::string externalPath;
|
||||
std::string levelName;
|
||||
std::string levelDir;
|
||||
std::string serverKey;
|
||||
bool showHelp;
|
||||
int port;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user