WayOut  0.1
 All Classes
C:/Users/martin/Desktop/WayOut BCB/Obstacle.h
00001 #ifndef OBSTACLE_H
00002 #define OBSTACLE_H
00003 
00004 #include "Box.h"
00005 
00006 class Obstacle : public Box
00007 {
00008 private:
00009    int mPositionX;
00010    int mPositionY;
00011    
00012 public:
00013    Obstacle();
00014    void setPosition(int x, int y);
00015    int getPositionX();    //ProtoTyp
00016    int getPositionY();    //ProtoTyp
00017 };
00018 #endif