summaryrefslogtreecommitdiff
path: root/ui/windowContent.h
blob: 762d1cc47787e4ad5214c042ceea69005f96f94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include "chronology.h"
#include "collection.h"
#include "special_members.h"
#include "stdTypeDefs.h"
#include "uiComponent.h" // IWYU pragma: keep

class WindowContent : public StdTypeDefs<WindowContent> {
public:
	WindowContent() = default;
	virtual ~WindowContent() = default;
	NO_MOVE(WindowContent);
	NO_COPY(WindowContent);

	virtual void tick(TickDuration);
	virtual void render() const = 0;
	virtual bool handleInput(const SDL_Event & e);

protected:
	UniqueCollection<UIComponent> uiComponents;
};