?? storedatabase.h
字號:
// MUD Programming
// Ron Penton
// (C)2003
// StoreDatabase.h - The class that stores all of the stores within the MUD
//
//
#ifndef SIMPLEMUDSTOREDATABASE_H
#define SIMPLEMUDSTOREDATABASE_H
#include <string>
#include <map>
#include "EntityDatabase.h"
#include "Store.h"
namespace SimpleMUD
{
// --------------------------------------------------------------------
// A database for items
// --------------------------------------------------------------------
class StoreDatabase : public EntityDatabase<Store>
{
public:
static bool Load();
}; // end class StoreDatabase
} // end namespace SimpleMUD
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -