📄 itemdatabase.h
字号:
// MUD Programming
// Ron Penton
// (C)2003
// ItemDatabase.h - The class that stores all of the items within the MUD
//
//
#ifndef SIMPLEMUDITEMDATABASE_H
#define SIMPLEMUDITEMDATABASE_H
#include <string>
#include <map>
#include "EntityDatabase.h"
#include "Item.h"
namespace SimpleMUD
{
// --------------------------------------------------------------------
// A database for items
// --------------------------------------------------------------------
class ItemDatabase : public EntityDatabase<Item>
{
public:
static bool Load();
}; // end class ItemDatabase
} // end namespace SimpleMUD
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -