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
Lore/Lore.h@40:90c7a893d513, 2019-05-07 (annotated)
- Committer:
- ikenna1
- Date:
- Tue May 07 10:01:34 2019 +0000
- Revision:
- 40:90c7a893d513
- Parent:
- 39:7824f9080f59
- Child:
- 41:e1fa36c0492e
Add Orion ship weapons ; Gives a weapon that tracks the movements of enemy ship to the Orion
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ikenna1 | 39:7824f9080f59 | 1 | #ifndef LORE_H |
ikenna1 | 39:7824f9080f59 | 2 | #define LORE_H |
ikenna1 | 39:7824f9080f59 | 3 | |
ikenna1 | 39:7824f9080f59 | 4 | #include "mbed.h" |
ikenna1 | 39:7824f9080f59 | 5 | #include "N5110.h" |
ikenna1 | 39:7824f9080f59 | 6 | #include "Gamepad.h" |
ikenna1 | 39:7824f9080f59 | 7 | |
ikenna1 | 39:7824f9080f59 | 8 | class Lore |
ikenna1 | 39:7824f9080f59 | 9 | { |
ikenna1 | 39:7824f9080f59 | 10 | public: |
ikenna1 | 39:7824f9080f59 | 11 | Lore(); |
ikenna1 | 39:7824f9080f59 | 12 | ~Lore(); |
ikenna1 | 39:7824f9080f59 | 13 | |
ikenna1 | 39:7824f9080f59 | 14 | void display(N5110 &lcd); |
ikenna1 | 39:7824f9080f59 | 15 | void seekerl(N5110 &lcd); |
ikenna1 | 39:7824f9080f59 | 16 | void shooter(N5110 &lcd); |
ikenna1 | 40:90c7a893d513 | 17 | void intro1(N5110 &lcd); |
ikenna1 | 40:90c7a893d513 | 18 | void intro2(N5110 &lcd); |
ikenna1 | 39:7824f9080f59 | 19 | |
ikenna1 | 39:7824f9080f59 | 20 | private: |
ikenna1 | 39:7824f9080f59 | 21 | |
ikenna1 | 39:7824f9080f59 | 22 | }; |
ikenna1 | 39:7824f9080f59 | 23 | #endif |