17 lines
252 B
C++
17 lines
252 B
C++
#ifndef MINECRAFT_CONFIG_H_
|
|
#define MINECRAFT_CONFIG_H_
|
|
|
|
#include "common.hpp"
|
|
|
|
class Config {
|
|
public:
|
|
|
|
std::string ResourceBase = MC_RESOURCES;
|
|
// std::string ResourceBase = "E:/Games/minecraft/resources/";
|
|
|
|
};
|
|
|
|
static Config GameConfig;
|
|
|
|
#endif
|