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
RosenEngine/RosenEngine.h@3:f9cd1a38d5c6, 2019-03-02 (annotated)
- Committer:
- ikenna1
- Date:
- Sat Mar 02 19:36:45 2019 +0000
- Revision:
- 3:f9cd1a38d5c6
- Parent:
- 2:66a4e5d7a7cd
- Child:
- 4:740e14ebbc97
Added in a title card
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ikenna1 | 2:66a4e5d7a7cd | 1 | #ifndef ROSENENGINE_H |
ikenna1 | 2:66a4e5d7a7cd | 2 | #define ROSENENGINE_H |
ikenna1 | 2:66a4e5d7a7cd | 3 | |
ikenna1 | 2:66a4e5d7a7cd | 4 | #include "mbed.h" |
ikenna1 | 2:66a4e5d7a7cd | 5 | #include "N5110.h" |
ikenna1 | 2:66a4e5d7a7cd | 6 | #include "Gamepad.h" |
ikenna1 | 2:66a4e5d7a7cd | 7 | |
ikenna1 | 2:66a4e5d7a7cd | 8 | |
ikenna1 | 2:66a4e5d7a7cd | 9 | class RosenEngine |
ikenna1 | 2:66a4e5d7a7cd | 10 | { |
ikenna1 | 2:66a4e5d7a7cd | 11 | |
ikenna1 | 2:66a4e5d7a7cd | 12 | public: |
ikenna1 | 2:66a4e5d7a7cd | 13 | RosenEngine(); |
ikenna1 | 2:66a4e5d7a7cd | 14 | ~RosenEngine(); |
ikenna1 | 3:f9cd1a38d5c6 | 15 | /* |
ikenna1 | 3:f9cd1a38d5c6 | 16 | void RosenEngine::init(int ship_width,int ship_speed,int ship_x_pos,int ship_y_pos); |
ikenna1 | 3:f9cd1a38d5c6 | 17 | |
ikenna1 | 2:66a4e5d7a7cd | 18 | void init(int paddle_width,int paddle_height,int ball_size,int speed); |
ikenna1 | 2:66a4e5d7a7cd | 19 | void read_input(Gamepad &pad); |
ikenna1 | 2:66a4e5d7a7cd | 20 | void update(Gamepad &pad); |
ikenna1 | 2:66a4e5d7a7cd | 21 | void draw(N5110 &lcd); |
ikenna1 | 3:f9cd1a38d5c6 | 22 | */ |
ikenna1 | 2:66a4e5d7a7cd | 23 | private: |
ikenna1 | 2:66a4e5d7a7cd | 24 | |
ikenna1 | 2:66a4e5d7a7cd | 25 | |
ikenna1 | 2:66a4e5d7a7cd | 26 | |
ikenna1 | 2:66a4e5d7a7cd | 27 | }; |
ikenna1 | 2:66a4e5d7a7cd | 28 | |
ikenna1 | 2:66a4e5d7a7cd | 29 | #endif |