Library to control the Tetris game area

Dependents:   Tetris_Game

Revision:
5:16c174ded933
Parent:
4:e4952be370d3
--- a/Tetris.h	Tue Apr 12 12:48:14 2016 +0000
+++ b/Tetris.h	Thu May 05 09:40:31 2016 +0000
@@ -1,13 +1,7 @@
-/*Tetris
-
-Library which contains the functions for the game tetris to run on a Nokia N5110 screen
+/**
+@file Tetris.h
 
-V 1.0 - initial release
-
-Joseph Allison March 2016
-
-#ifndef TMP102_H
-#define TMP102_H
+@brief V 1.0 - initial release
 
 */
 
@@ -17,17 +11,26 @@
 #include "mbed.h"
 #include "N5110.h"
 
+/**
+@brief Library created to interact with the game area for Tertis on a N5110 screen
 
-class Tetris
-{
+@brief Version - 1.0
+
+@author Joseph Allison
+@date   April 2016
+*/
+
+
+class Tetris{
 
 public:
 
+    /**Create Tetris instance
+    */
     Tetris();
-    
-    
-    /**
-    Creates the game area boarder and writes the Level, score and next text
+        
+    /** Game Setup
+    @brief Creates the game area boarder and writes the Level, score and next text
     */
     void gameSetup();