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.
Diff: SavedGames/SavedGames.h
- Revision:
- 49:ed569eceeaa4
- Child:
- 50:13c8710985f4
diff -r e308067cfea5 -r ed569eceeaa4 SavedGames/SavedGames.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SavedGames/SavedGames.h Tue May 19 15:32:00 2020 +0000 @@ -0,0 +1,36 @@ +#ifndef SAVEDGAMES_H +#define SAVEDGAMES_H + +// Included libraries ---------------------------------------------------------- +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +/** SavedGames class + * @brief Stores saved games on sd card, stores score, lives, smart bombs and + * number of current alliens + * @author Benjamin Evans, University of Leeds + * @date May 2020 + */ +class SavedGames{ + public: + /** Constructor */ + SavedGames(); + + /** Destructor */ + ~SavedGames(); + + /** Initalises SavedGames*/ + void init(); + + + + // Accessors and mutators -------------------------------------------------- + + private: + + // Varibles ---------------------------------------------------------------- + + +}; +#endif \ No newline at end of file