Advertisement
zCool

Wall.h

May 20th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #ifndef WALL_H
  2. #define WALL_H
  3.  
  4. #include "Entity.h"
  5. #include <string>
  6.  
  7. class Wall:public Entity
  8. {
  9. public:
  10.     Wall(int X, int Y, std::string sprite);
  11. };
  12. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement