Files
Minecraft/legacy/src/config.hpp
2020-05-15 15:12:13 +01:00

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