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

#include "DI/auto_wirable.hpp"
#include "interfaces/game.hpp"
#include "interfaces/scene.hpp"

#include <memory>

class Game : public IGame, public AutoWirable<IGame, Game, IScene>
{
public:
	explicit Game(const std::shared_ptr<IScene> &scene);

	void run() override;

private:
	const std::shared_ptr<IScene> &_scene;
};