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
SnakeEngine/SnakeEngine.h
- Committer:
- JRM1986
- Date:
- 2018-03-06
- Revision:
- 3:50f01159c61d
- Parent:
- 2:ea90cec2489a
- Child:
- 6:f3f508cea1c4
File content as of revision 3:50f01159c61d:
#ifndef SNAKEENGINE_H #define SNAKEENGINE_H #include "mbed.h" #include "FXOS8700CQ.h" #include "Gamepad.h" #include "N5110.h" /** SnakeEngine Class * @brief Class that initialises and defines the game charectoristics ready for the main file * @author Joshua R. Marshall * @date Feb, 2018 */ class SnakeEngine { public: SnakeEngine(); // constructor ~SnakeEngine(); // destructor private: }; #endif