Tyler Altenhofen / MVC

Block.h

Committer:
tyleralt
Date:
2015-05-01
Revision:
1:bb1507f0bb64
Child:
2:891b3618be4f

File content as of revision 1:bb1507f0bb64:

#ifndef BLOCK
#define BLOCK
class Point{
        
    int x, y, z;     
    int size, height;   
    public :
    getEuclidPoint
    void moveUp();
    void moveDown();
    void rotateRight();
    void rotateLeft();
    void moveIn();
    void moveOut();
};
#endif