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