blob: 72d8f817f458af6aaddb12d59838dffc5122a357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <unordered_map>
// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class ICLIGameEngine
{
public:
virtual ~ICLIGameEngine() noexcept = default;
virtual void start() noexcept = 0;
};
|