mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-08 18:30:32 +00:00
18 lines
234 B
C++
18 lines
234 B
C++
#pragma once
|
|
|
|
#include "Board.h"
|
|
|
|
class Configuration;
|
|
|
|
class Game {
|
|
public:
|
|
Game(const Configuration& configuration);
|
|
|
|
void runLoop();
|
|
void initialise();
|
|
|
|
private:
|
|
const Configuration& m_configuration;
|
|
mutable Board m_board;
|
|
};
|