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

📄 map.h

📁 含有文章和源码
💻 H
字号:
// This class handles the airport layout.  It defines which direc-
//  tion you can go from each location and performs the actions
//  requested by the player.

#ifndef MAP_H
#define MAP_H

#include "location.h"

class map {

   location *present_location;
   location *result;

public:

   void initialize(void);
   void perform_action(void);
   location *get_current_location(void) { return present_location; };

};

#endif

⌨️ 快捷键说明

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