summaryrefslogtreecommitdiff
path: root/ui/uiComponent.h
blob: cd21de3ef2a1afcad751dff7538cf3ff6b324666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef UICOMPONENT_H
#define UICOMPONENT_H

class UIShader;

class UIComponent {
public:
	virtual ~UIComponent() = default;
	virtual void render(const UIShader &) const = 0;
};

#endif