aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/scene.hpp
blob: 39110a2df5740a7141be859bec1eed2a969e505b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "interfaces/matrix.hpp"

#include <functional>
#include <memory>
#include <string_view>

class IScene
{
public:
	virtual ~IScene() = default;

	virtual void enter() = 0;

	virtual void leave() = 0;
};