Advertisement
ijontichy

heh.cpp

Jul 8th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. class DamageMod;
  2.  
  3. class Herpity
  4. {
  5.     private:
  6.         int x, y;
  7.         int damage_dice_sides;
  8.         int damage_dice_count;
  9.         DamageMod damage_modifier;
  10.         std::string name;
  11.  
  12.     public:
  13.         void Set_Coordinates(int newX, int newY);
  14.         void Set_Name(std::string &name);
  15.         void Set_Dice(int sides, int count, DamageMod &modifier);
  16.         int  Get_Damage(void);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement