BastatDoreau / Mbed 2 deprecated MoveYourTetris

Dependencies:   mbed APDS_9960 mbed-rtos

Dependents:   MoveYourTetris_OK

Revision:
38:418278e5eb6b
Parent:
16:5c3d61584f51
--- a/include/cCollision.h	Sun Apr 24 20:15:03 2016 +0000
+++ b/include/cCollision.h	Sun Apr 24 21:35:57 2016 +0000
@@ -4,24 +4,19 @@
 #include "cMatrice.h"
 #include "cForme.h"
 
+// Définition de la classe cCollision
+// Classe qui assure la gestion des collision possibles
+
 class cCollision{
     
 private:
-    
-    // ATTRIBUTS
-        
-public:
-    
-    // CONSTRUCTEURS
-    
-    cCollision();
-        
-    // DESTRUCTEURS
-    
-    ~cCollision();
-    
-    // METHODES
-        
+       
+public:    
+    // CONSTRUCTEURS    
+    cCollision();        
+    // DESTRUCTEURS    
+    ~cCollision();    
+    // METHODES        
     bool bordDroit(cForme &);
     bool bordGauche(cForme &);
     bool bordBas(cForme &, cMatrice &);
@@ -30,4 +25,4 @@
     bool pieceDroite(cForme &, cMatrice &);
 };
 
-#endif
\ No newline at end of file
+#endif //CCOLLISION_H
\ No newline at end of file