SPQR-Team1-2020/include/game.h

12 lines
187 B
C
Raw Normal View History

2019-12-02 17:25:22 +01:00
#pragma once
#include "vars.h"
#include "sensors.h"
2019-12-02 17:25:22 +01:00
class Game {
2019-12-02 17:25:22 +01:00
public:
Game();
void play(bool condition=true);
private:
virtual void realPlay() = 0;
2019-12-02 17:25:22 +01:00
};