Advertisement
zCool

Stick.h

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