You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
318 B
C

#pragma once
2 years ago
#include "core/gameevent.h"
#include "core/updatedata.h"
2 years ago
namespace kku
{
class Game
{
public:
virtual ~Game() = default;
virtual void run() = 0;
2 years ago
virtual void input(GameEvent&& inputdata) = 0;
virtual void update(UpdateData&& updatedata) = 0;
virtual void display() const = 0;
};
2 years ago
}