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

Dependencies:   mbed FATFileSystem

Committer:
rottenegg
Date:
Mon May 06 20:53:37 2019 +0000
Revision:
14:165fff6d1854
Parent:
12:ff8d26124c38
Child:
21:f3b0ce18b44f
CaMove: Added Additional Chaser options eg. death zones/; Game_Manager: Added Manages all Scenes and Story events with RNG management, Booting Diagnostics and Game File Verification, AllPaths was added.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rottenegg 0:af8236e47084 1 /*
rottenegg 0:af8236e47084 2 ELEC2645 Embedded Systems Project
rottenegg 0:af8236e47084 3 School of Electronic & Electrical Engineering
rottenegg 0:af8236e47084 4 University of Leeds
rottenegg 0:af8236e47084 5 Name:Saad Tayyab
rottenegg 0:af8236e47084 6 Username:el17st
rottenegg 0:af8236e47084 7 Student ID Number:201145512
rottenegg 0:af8236e47084 8 Date: 18/04/2019
rottenegg 0:af8236e47084 9 */
rottenegg 0:af8236e47084 10
rottenegg 0:af8236e47084 11 #include "mbed.h"
rottenegg 14:165fff6d1854 12 #include "Game_Manager.h"
rottenegg 8:e3a76a808a4c 13
rottenegg 14:165fff6d1854 14 Game_Manager GM(PTE3, PTE1, PTE2, PTE4, PTC9,PTC0,PTC7,PTD2,PTD1,PTC11, PTB9,PTB11,PTB10,PTC10,PTD0);
rottenegg 8:e3a76a808a4c 15
rottenegg 8:e3a76a808a4c 16 int main() {
rottenegg 14:165fff6d1854 17 if (!GM.boot_error()) {
rottenegg 14:165fff6d1854 18 GM.main();
rottenegg 14:165fff6d1854 19 }
rottenegg 8:e3a76a808a4c 20 }