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
spase_ship/space_ship.h
- Committer:
- fy14lkaa
- Date:
- 2019-04-21
- Revision:
- 41:e68e2eebcce2
- Parent:
- 40:a0607d4fae74
- Child:
- 42:83f332262165
File content as of revision 41:e68e2eebcce2:
#ifndef SPACE_SHIP_H #define SPACE_SHIP_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "SpaceInvadersEngine.h" #include "Alien.h" #include "bullet.h" class space_ship { public: space_ship(); ~space_ship(); void init(int x,int height,int width); void draw(N5110 &lcd); void update(Direction d,float mag); void add_score(); #endif