linux-wallpaperengine/wallpaperengine/config.h
Alexis Maiquez Murcia 1821731d5a + Basic parsing for json files on project (just scene, project objects and basic images)
+ Re-structured some code to its (hopefully) final form (shader compiler, file finding, etc)

Signed-off-by: Alexis Maiquez Murcia <almamu@almamu.com>
2018-07-06 13:47:11 +02:00

23 lines
366 B
C++

#ifndef WALLENGINE_CONFIG_H
#define WALLENGINE_CONFIG_H
#include <string>
#include <irrlicht/path.h>
namespace wp
{
namespace config
{
class path
{
public:
static irr::io::path resources;
static irr::io::path base;
static irr::io::path shaders;
};
};
}
#endif //WALLENGINE_CONFIG_H