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.
Fork of fy15raf by
Asteroids/Asteroid.h@5:b230e79d36d6, 2018-04-19 (annotated)
- Committer:
- RehamFaqehi
- Date:
- Thu Apr 19 17:46:28 2018 +0000
- Revision:
- 5:b230e79d36d6
- Parent:
- 4:8c6723798227
- Child:
- 6:7b733b2a6cf6
The asteroid is moving now
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
RehamFaqehi | 4:8c6723798227 | 1 | #ifndef stone_H |
RehamFaqehi | 4:8c6723798227 | 2 | #define stone_H |
RehamFaqehi | 4:8c6723798227 | 3 | |
RehamFaqehi | 4:8c6723798227 | 4 | #include "mbed.h" |
RehamFaqehi | 4:8c6723798227 | 5 | #include "N5110.h" |
RehamFaqehi | 4:8c6723798227 | 6 | #include "Gamepad.h" |
RehamFaqehi | 4:8c6723798227 | 7 | #include "Rocket.h" |
RehamFaqehi | 4:8c6723798227 | 8 | |
RehamFaqehi | 4:8c6723798227 | 9 | class Asteroid |
RehamFaqehi | 4:8c6723798227 | 10 | { |
RehamFaqehi | 4:8c6723798227 | 11 | |
RehamFaqehi | 4:8c6723798227 | 12 | public: |
RehamFaqehi | 4:8c6723798227 | 13 | Asteroid(); |
RehamFaqehi | 4:8c6723798227 | 14 | ~Asteroid(); |
RehamFaqehi | 4:8c6723798227 | 15 | void init(int speed); |
RehamFaqehi | 4:8c6723798227 | 16 | void draw(N5110 &lcd); |
RehamFaqehi | 5:b230e79d36d6 | 17 | void update(); |
RehamFaqehi | 4:8c6723798227 | 18 | |
RehamFaqehi | 4:8c6723798227 | 19 | private: |
RehamFaqehi | 4:8c6723798227 | 20 | |
RehamFaqehi | 4:8c6723798227 | 21 | Vector2D _velocity; |
RehamFaqehi | 4:8c6723798227 | 22 | int _size; |
RehamFaqehi | 4:8c6723798227 | 23 | int _x; |
RehamFaqehi | 4:8c6723798227 | 24 | int _y1; |
RehamFaqehi | 4:8c6723798227 | 25 | }; |
RehamFaqehi | 4:8c6723798227 | 26 | #endif |