forked from Kolyah35/minecraft-pe-0.6.1
25 lines
575 B
C++
Executable File
25 lines
575 B
C++
Executable File
#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
|