2021-11-27 19:16:41 +00:00
|
|
|
#pragma once
|
2021-11-21 06:23:53 +00:00
|
|
|
|
|
|
|
#include "event/event.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
|
|
|
namespace simpleengine {
|
|
|
|
class Renderable : public simpleengine::Event {
|
|
|
|
private:
|
|
|
|
using super = simpleengine::Event;
|
|
|
|
public:
|
|
|
|
explicit Renderable(std::shared_ptr<GLFWwindow> window = nullptr) : super(window) {}
|
|
|
|
virtual ~Renderable() = default;
|
|
|
|
};
|
2021-11-27 19:16:41 +00:00
|
|
|
}
|