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