aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/game.hpp
blob: f9d851b27400b1e355d1c96014f9289b2e507617 (plain)
1
2
3
4
5
6
7
#pragma once

class IGame
{
public:
	virtual void run() = 0;
};