
Final Commit
Dependencies: mbed
Snake/Snake.h
- Committer:
- JRM1986
- Date:
- 2018-03-06
- Revision:
- 3:50f01159c61d
- Parent:
- 2:ea90cec2489a
- Child:
- 9:561e5681b7a6
File content as of revision 3:50f01159c61d:
#ifndef SNAKE_H #define SNAKE_H #include "mbed.h" #include "FXOS8700CQ.h" #include "Gamepad.h" #include "N5110.h" /** Snake Class * @brief Describes the methods and functions for the snake * @author Joshua R. Marshall * @date Feb, 2018 */ class Snake { public: Snake(); // constructor ~Snake(); // destructor private: }; #endif