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@8:13cef7cb872e, 2018-04-24 (annotated)
- Committer:
- RehamFaqehi
- Date:
- Tue Apr 24 11:17:43 2018 +0000
- Revision:
- 8:13cef7cb872e
- Parent:
- 6:7b733b2a6cf6
- Child:
- 15:658f1216ee84
Two more asteroids added
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 | 8:13cef7cb872e | 15 | void init(float speed); |
RehamFaqehi | 4:8c6723798227 | 16 | void draw(N5110 &lcd); |
RehamFaqehi | 5:b230e79d36d6 | 17 | void update(); |
RehamFaqehi | 6:7b733b2a6cf6 | 18 | Vector2D get_pos(); |
RehamFaqehi | 4:8c6723798227 | 19 | |
RehamFaqehi | 4:8c6723798227 | 20 | private: |
RehamFaqehi | 4:8c6723798227 | 21 | |
RehamFaqehi | 4:8c6723798227 | 22 | Vector2D _velocity; |
RehamFaqehi | 6:7b733b2a6cf6 | 23 | Vector2D p; |
RehamFaqehi | 4:8c6723798227 | 24 | int _size; |
RehamFaqehi | 4:8c6723798227 | 25 | int _x; |
RehamFaqehi | 4:8c6723798227 | 26 | int _y1; |
RehamFaqehi | 4:8c6723798227 | 27 | }; |
RehamFaqehi | 4:8c6723798227 | 28 | #endif |