summaryrefslogtreecommitdiff
path: root/ui/uiComponent.h
blob: 6ee347ed7e9bd7ff704063bc206648c2105f73c5 (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() const = 0;
	virtual bool handleInput(const SDL_Event &) = 0;
};