Corrigido erro em game.h
[Projeto-PCG.git] / game.h
blobfa083aeac65e70355404a296ad731ca949877e2c
1 #ifndef GAME_H
2 #define GAME_H
4 class Game {
5 public:
6 Game();
7 void update();
8 void show(Player jogador);
9 void mainLoop();
12 #endif