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

#include "interfaces/input.hpp"
#include "interfaces/scene.hpp"

#include <memory>

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

	virtual void run() = 0;
};

using IGameFactory = std::shared_ptr<IGame> (*)();