17 lines
371 B
C++
17 lines
371 B
C++
#pragma once
|
|
|
|
#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;
|
|
};
|
|
} |