mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 13:56:48 +08:00

+ Re-structured some code to its (hopefully) final form (shader compiler, file finding, etc) Signed-off-by: Alexis Maiquez Murcia <almamu@almamu.com>
23 lines
366 B
C++
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
|