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:
5:23a85b16ee54
Parent:
4:0fc3441556e1
Child:
8:264398d3c610

File content as of revision 5:23a85b16ee54:

#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 render();
void update();

#endif