Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of el17dg by
game/game.h@20:557e84189a57, 2019-03-26 (annotated)
- Committer:
- Noximilien
- Date:
- Tue Mar 26 10:52:53 2019 +0000
- Revision:
- 20:557e84189a57
- Parent:
- 19:b78fa41d04a9
- Child:
- 21:0eb394495b8a
Have made the intro for my game. I need to implement class system again in order to get more marks. Need to a function that will be resetting in game values when the game is over.;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Noximilien | 3:10918b0f7a7d | 1 | #ifndef GAME_H |
Noximilien | 3:10918b0f7a7d | 2 | #define GAME_H |
Noximilien | 3:10918b0f7a7d | 3 | |
Noximilien | 4:02c63aaa2df9 | 4 | class Game{ |
Noximilien | 4:02c63aaa2df9 | 5 | public: |
Noximilien | 4:02c63aaa2df9 | 6 | bool updateAndDraw(); |
Noximilien | 19:b78fa41d04a9 | 7 | bool checkGameOver(); |
Noximilien | 20:557e84189a57 | 8 | //void gameValuesInit(); |
Noximilien | 4:02c63aaa2df9 | 9 | private: |
Noximilien | 3:10918b0f7a7d | 10 | }; |
Noximilien | 3:10918b0f7a7d | 11 | |
Noximilien | 3:10918b0f7a7d | 12 | |
Noximilien | 3:10918b0f7a7d | 13 | #endif |