Simple fish eat program
Dependencies: mbed mbed-rtos N5110 ShiftReg Tone
Revision 14:f1552b691274, committed 2021-08-02
- Comitter:
- el18a2k
- Date:
- Mon Aug 02 14:35:02 2021 +0000
- Parent:
- 13:183bd19f3d7d
- Commit message:
- final
Changed in this revision
--- a/classes/FishEngine.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/FishEngine.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #include "FishEngine.h" //definitions
--- a/classes/FishEngine.h Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/FishEngine.h Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #ifndef FISHENGINE_H #define FISHENGINE_H
--- a/classes/Game.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Game.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #include "Game.h" //objects
--- a/classes/Game.h Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Game.h Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #ifndef GAME_H #define GAME_H
--- a/classes/Graphics.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Graphics.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #include "Graphics.h" //draws title screen
--- a/classes/Graphics.h Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Graphics.h Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #ifndef GRAPHICS_H #define GRAPHICS_H
--- a/classes/HighScore.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/HighScore.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See header files for additional recognistion */ + #include "HighScore.h" LocalFileSystem local("scores"); //define local file system
--- a/classes/HighScore.h Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/HighScore.h Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See header files for additional recognistion */ + #ifndef HIGHSCORE_H #define HIGHSCORE_H
--- a/classes/Settings.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Settings.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #include "Settings.h" //attach
--- a/classes/Settings.h Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Settings.h Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #ifndef SETTINGS_H #define SETTINGS_H
--- a/classes/Sound.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Sound.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #include "Sound.h" #include "Tone.h"
--- a/classes/Sound.h Wed Apr 21 16:26:26 2021 +0000 +++ b/classes/Sound.h Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,8 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + #ifndef SOUND_H #define SOUND_H
--- a/main.cpp Wed Apr 21 16:26:26 2021 +0000 +++ b/main.cpp Mon Aug 02 14:35:02 2021 +0000 @@ -1,3 +1,9 @@ +/* Fish Eat Game v2.0 +* Author: Andrew Knowles +* Date: 21/04/2021 +* Note: See hearder files for additional recognistion */ + + #include "mbed.h" #include "rtos.h" //allows multiple threads to run at the same time: https://os.mbed.com/handbook/RTOS