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.
life.h
- Committer:
- Neowless
- Date:
- 2020-05-15
- Revision:
- 2:cc9d8ec2e1f4
- Parent:
- 1:48b0bf0bcda8
File content as of revision 2:cc9d8ec2e1f4:
#ifndef LIFE_H #define LIFE_H #include "Bitmap.h" #include "N5110.h" #include "Gamepad.h" class life{ public: void init(); void update(); void display(N5110 &lcd); int liferest(); private: int _x; int _y; int _num; int _width; int _height; int icon[56]; }; #endif