summaryrefslogtreecommitdiff
path: root/ui/windowContent.h
blob: d7fcad2e7e815fe8eb3ab92095343fb1c590b157 (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:
	::Collection<UIComponent> uiComponents;
};