raxbg

Items.h

May 17th, 2011
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #ifndef ITEMS_H
  2. #define ITEMS_H
  3.  
  4. using namespace std;
  5.  
  6. class Items
  7. {
  8.     public:
  9.         Items();
  10.         void printPlainItems();
  11.         void printPositiveItems();
  12.         void printNegativeItems();
  13.     private:
  14.         string itemNames[20];
  15.         int itemPower[20];
  16.         int itemsNumber;
  17. };
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment