aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/engine.hpp
blob: 498ff41738434ef365c4e8ee73e568874543528d (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "interfaces/observable.hpp"

#include <unordered_map>

class ICLIGameEngine
{
public:
	virtual void start() noexcept = 0;
};