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: Snek/Snek.cpp
- Revision:
- 1:a14415de3ad5
- Child:
- 2:9ca5e1c221c3
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Snek/Snek.cpp Mon Apr 16 09:07:17 2018 +0000 @@ -0,0 +1,23 @@ +#include "Snek.h" + +// nothing doing in the constructor and destructor +Snek::Snek() +{ + +} + +Snek::~Snek() +{ + +} + +void Snek::init() +{ + //Inital values for variables +} + +void Snek::draw(N5110 &lcd) +{ + //Drawing of snake occures here + +} \ No newline at end of file