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: GameEngine/GameEngine.h
- Revision:
- 7:0af4ced868f5
- Child:
- 8:dd1037c5435b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GameEngine/GameEngine.h Sat Apr 18 16:36:52 2020 +0000 @@ -0,0 +1,32 @@ +#ifndef GAMEENIGNE_H +#define GAMEENIGNE_H + +// Include libraries +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +/** Spaceship class +@brief Draws and moves spaceship +@author Benjamin Evans, University of Leeds +@date April 2020 +*/ + +class GameEngine { + public: + /** Constructor */ + GameEngine(); + + /** Destructor */ + ~GameEngine(); + + /** Initalises Spaceship */ + void init(); + + + + private: + +}; + +#endif \ No newline at end of file