mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-12 17:04:46 +00:00
211c75d84d
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
23 lines
315 B
C++
23 lines
315 B
C++
#pragma once
|
|
|
|
//#include <stdexcept>
|
|
//#include <string>
|
|
//#include <memory>
|
|
//#include <map>
|
|
|
|
#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;
|
|
};
|