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

#include "interfaces/matrix.hpp"

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

class IScene
{
public:
	virtual void enter() = 0;

	virtual void leave() = 0;
};