mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-07-14 13:22:23 +08:00
27 lines
376 B
C++
27 lines
376 B
C++
#ifndef WALLENGINE_OBJECT_H
|
|
#define WALLENGINE_OBJECT_H
|
|
|
|
#include <iostream>
|
|
#include <irrlicht/irrlicht.h>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
class Object
|
|
{
|
|
public:
|
|
Object (json json_data);
|
|
|
|
private:
|
|
int m_id;
|
|
|
|
bool m_visible;
|
|
|
|
std::string m_model;
|
|
std::string m_angles;
|
|
std::string m_image;
|
|
};
|
|
|
|
|
|
#endif //WALLENGINE_OBJECT_H
|