Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef ITEMS_H
- #define ITEMS_H
- using namespace std;
- class Items
- {
- public:
- Items();
- void printPlainItems();
- void printPositiveItems();
- void printNegativeItems();
- private:
- string itemNames[20];
- int itemPower[20];
- int itemsNumber;
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment