Final Submission. I have read and agreed with Statement of Academic Integrity.

Dependencies:   mbed Gamepad N5110 Joystick

main.h

Committer:
el16dlc
Date:
2019-05-09
Revision:
10:aedca0082855
Parent:
9:a7ea33e6bd82

File content as of revision 10:aedca0082855:

#ifndef MAIN_H
#define MAIN_H

// LIBRARIES
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Snake.h"
#include "Game_engine.h"

// INSTANCES
extern N5110 lcd;
extern Gamepad gamepad;

// FUNCTION PROTOTYPES
void Init();
void Welcome();
void Menu();
void render();
void update();
void game_over();

#endif