17 lines
287 B
C++
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
|