blob: 9178c6bcb2d627b6f76458c709f20b1533a90b65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <glm/glm.hpp>
#include <special_members.h>
class UIShader;
union SDL_Event;
class UIComponent {
public:
UIComponent() = default;
virtual ~UIComponent() = default;
NO_MOVE(UIComponent);
NO_COPY(UIComponent);
virtual void render(const UIShader &) const = 0;
virtual bool handleInput(const SDL_Event &) = 0;
};
|