ELEC2645 (2018/19) / Mbed 2 deprecated el17dg

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

Committer:
Noximilien
Date:
Sun Mar 03 23:36:34 2019 +0000
Revision:
4:02c63aaa2df9
Parent:
3:10918b0f7a7d
Child:
5:2b9181bc5c89
Decided to switch to the class system (need to understand it better). Removed the parts of the menu from the main (was adviced to keep it separate). Have made it go from the menu into the game. ; To Do: the animation, setting, tutorial, in-game menu.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Noximilien 3:10918b0f7a7d 1 #ifndef GAME_H
Noximilien 3:10918b0f7a7d 2 #define GAME_H
Noximilien 3:10918b0f7a7d 3
Noximilien 3:10918b0f7a7d 4
Noximilien 4:02c63aaa2df9 5 class Game{
Noximilien 4:02c63aaa2df9 6 public:
Noximilien 4:02c63aaa2df9 7 bool updateAndDraw();
Noximilien 4:02c63aaa2df9 8 private:
Noximilien 3:10918b0f7a7d 9
Noximilien 3:10918b0f7a7d 10 };
Noximilien 3:10918b0f7a7d 11
Noximilien 3:10918b0f7a7d 12
Noximilien 3:10918b0f7a7d 13 #endif