Game for Leeds University Gamepad for the FRDM-K64F: Game is a RPG Horror Title.

Dependencies:   mbed FATFileSystem

Committer:
rottenegg
Date:
Tue Apr 23 21:46:55 2019 +0000
Revision:
8:e3a76a808a4c
Child:
21:f3b0ce18b44f
CaMove: Update to move(N5110 &lcd) function's collision detection due to issue where player could glitch out of terrain.; SceneCreator was made, it manages all scene allowing easy function changes and also contains all function to control events ;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rottenegg 8:e3a76a808a4c 1 #ifndef SCENEPATHS_H
rottenegg 8:e3a76a808a4c 2 #define SCENEPATHS_H
rottenegg 8:e3a76a808a4c 3 //Scene Base Loads
rottenegg 8:e3a76a808a4c 4
rottenegg 8:e3a76a808a4c 5 const char *SCN[8] = {
rottenegg 8:e3a76a808a4c 6 "/sd/Game-Files/ImgBin/SCN/0.bmp",
rottenegg 8:e3a76a808a4c 7 "/sd/Game-Files/ImgBin/SCN/1.bmp",
rottenegg 8:e3a76a808a4c 8 "/sd/Game-Files/ImgBin/SCN/2.bmp",
rottenegg 8:e3a76a808a4c 9 "/sd/Game-Files/ImgBin/SCN/3.bmp",
rottenegg 8:e3a76a808a4c 10 "/sd/Game-Files/ImgBin/SCN/4.bmp",
rottenegg 8:e3a76a808a4c 11 "/sd/Game-Files/ImgBin/SCN/5.bmp",
rottenegg 8:e3a76a808a4c 12 "/sd/Game-Files/ImgBin/SCN/6.bmp",
rottenegg 8:e3a76a808a4c 13 "/sd/Game-Files/ImgBin/SCN/7.bmp"
rottenegg 8:e3a76a808a4c 14 };
rottenegg 8:e3a76a808a4c 15
rottenegg 8:e3a76a808a4c 16 #endif