Files
Minecraft/src/config.hpp
2019-10-07 12:10:49 +01:00

17 lines
287 B
C++

#ifndef MINECRAFT_CONFIG_H_
#define MINECRAFT_CONFIG_H_
#include "common.hpp"
class Config {
public:
std::string ResourceBase = "/home/ben/programming/Minecraft/resources/";
// std::string ResourceBase = "E:/Games/minecraft/resources/";
};
static Config GameConfig;
#endif