summaryrefslogtreecommitdiff
path: root/kurator/src/Title.h
blob: 5190f0fd7f1f7ac2890e8e48cc889cf4f50464ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include <memory>

#include "Session.h"
#include "Scene.h"


namespace kurator
{


class Title : public Scene
{
public:
	explicit Title(std::shared_ptr<Session> _session);
	void update() override;
	void draw() const override;
private:
	std::shared_ptr<Session> session;
};


}  // namespace kurator