Tyler Altenhofen / MVC
Revision:
0:ded79d89abdf
Child:
5:d7d16cb9c974
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Point.h	Fri May 01 05:33:50 2015 +0000
@@ -0,0 +1,20 @@
+#ifndef POINT
+#define POINT
+class Point{
+        
+    int offAngles [8];
+    int positionRadian, positionHeight, positionDistance;        
+    public :
+    Point ();
+    Point (int , int , int );
+    int getArraySlice(void);
+    char getIdentifyingChar(void);
+    int getPositionDistance(void);
+    void moveUp();
+    void moveDown();
+    void rotateRight();
+    void rotateLeft();
+    void moveIn();
+    void moveOut();
+};
+#endif
\ No newline at end of file