2021-11-27 19:16:41 +00:00
|
|
|
#pragma once
|
2021-11-21 06:23:53 +00:00
|
|
|
|
|
|
|
#include "../destructable.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
|
|
|
namespace simpleengine {
|
|
|
|
class Event : public simpleengine::Destructable {
|
|
|
|
public:
|
|
|
|
explicit Event(std::shared_ptr<GLFWwindow> window = nullptr) : window(window) {}
|
|
|
|
virtual ~Event() = default;
|
|
|
|
|
|
|
|
virtual void update(const float& delta_time) = 0;
|
|
|
|
virtual void render(std::shared_ptr<GLFWwindow> target) = 0;
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<GLFWwindow> window;
|
|
|
|
};
|
2021-11-27 19:16:41 +00:00
|
|
|
}
|