Advertisement
zCool

Rock.h

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