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
Rock/Rock.h@5:e5bb95fb308b, 2020-03-22 (annotated)
- Committer:
- josh_ohara
- Date:
- Sun Mar 22 19:06:39 2020 +0000
- Revision:
- 5:e5bb95fb308b
- Parent:
- 2:c2316b659b97
again
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| josh_ohara | 5:e5bb95fb308b | 1 | |
| josh_ohara | 5:e5bb95fb308b | 2 | #include "mbed.h" |
| josh_ohara | 5:e5bb95fb308b | 3 | #include "N5110.h" |
| josh_ohara | 5:e5bb95fb308b | 4 | #include "Gamepad.h" |
| josh_ohara | 5:e5bb95fb308b | 5 | |
| josh_ohara | 5:e5bb95fb308b | 6 | class Rock |
| josh_ohara | 5:e5bb95fb308b | 7 | { |
| josh_ohara | 5:e5bb95fb308b | 8 | |
| josh_ohara | 5:e5bb95fb308b | 9 | public: |
| josh_ohara | 5:e5bb95fb308b | 10 | void init(int x, int y, int size); |
| josh_ohara | 5:e5bb95fb308b | 11 | void draw(N5110 &lcd); |
| josh_ohara | 5:e5bb95fb308b | 12 | Vector2D get_position(); |
| josh_ohara | 5:e5bb95fb308b | 13 | int get_size(); |