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

#include <unordered_map>

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