⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 items.h

📁 含有文章和源码
💻 H
字号:
          // This stores the items located in each room and also in
          //  the players posession.  It consists of four boolean
          //  variables and methods to use them.

#ifndef ITEMS_H
#define ITEMS_H

#include "words.h"

class items {

   int keys_on_hand;      // TRUE if keys are here, otherwise FALSE
   int candy_on_hand;
   int ticket_on_hand;
   int money_on_hand;

public:

   items(void);            // Constructor, set all to FALSE
   void add_item(word item_to_add);      // Add one item to list
   void drop_item(word item_to_drop);    // Drop one item from list
   int item_here(word item_to_check);    // Returns TRUE or FALSE
   void list_items(void);                // List personal items
   void list_items_in_room(void);        // List location items

};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -