Snake vs Block Game to be run upon K64F.

Dependencies:   mbed

Revision:
87:871d9fecb593
Parent:
84:9950d561fdf8
Child:
99:4841f326200f
--- a/main.h	Tue May 07 00:02:11 2019 +0000
+++ b/main.h	Wed May 08 16:39:24 2019 +0000
@@ -1,8 +1,11 @@
+#ifndef MAIN_H
+#define MAIN_H
+
 /** @file main.h
  *  @brief Main.cpp's header file that defines all the directives and objects to use along with the definition of it's own function prototypes.
  */
  
-///////////// MAIN.CPP ////////////////
+///////////// MAIN.H ////////////////
 
 ///////// pre-processor directives ////////
 #include "mbed.h"
@@ -17,7 +20,6 @@
 # include "tests.h"
 #endif
 
- 
 /////////////// objects ///////////////
 N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11);
 Gamepad pad;
@@ -44,4 +46,6 @@
 void _set_mode_speed();
 void gameLoop();
 void refresh_game();
-//void deinit();
\ No newline at end of file
+//void deinit();
+
+#endif
\ No newline at end of file