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
Alien/Alien.h
- Committer:
- josh_ohara
- Date:
- 2020-03-23
- Revision:
- 6:5bea67cc96f9
- Parent:
- 2:c2316b659b97
- Child:
- 7:06a2558155f0
File content as of revision 6:5bea67cc96f9:
#include Pad.h
#include mbed.h
#include N5110.h
#include Gamepad.h
class Alien
{
public:
void init(int y, int size);
void draw(N5110 &lcd);
void get_position();
void update();
public:
int X;
int Y;
int Speed;
int Size;
};