6 #ifndef __SHOPMANAGER_H__ 7 #define __SHOPMANAGER_H__ 10 #include <boost/unordered_map.hpp> 23 typedef boost::unordered_map<u32, ItemList *> ShopMap;
44 bool IsValidShop(
u32 ShopId)
const {
return (ShopData.find(ShopId) != ShopData.end()); }
77 #endif // #ifndef __SHOPMANAGER_H__ ショップ管理 シングルトンクラス
Definition: ShopManager.h:17
void Initialize()
初期化
Definition: ShopManager.cpp:28
unsigned int u32
Definition: TypeDefs.h:10
virtual ~ShopManager()
デストラクタ
Definition: ShopManager.cpp:18
static ShopManager & GetInstance()
シングルトンインスタンスを取得
Definition: ShopManager.h:68
bool IsSelling(u32 ShopId, u32 ItemId) const
売っているか?
Definition: ShopManager.cpp:43
bool IsValidShop(u32 ShopId) const
有効なショップか?
Definition: ShopManager.h:44