openmw-tes3coop/apps/openmw/mwworld/inventorystore.hpp

17 lines
257 B
C++
Raw Normal View History

#ifndef GAME_MWWORLD_INVENTORYSTORE_H
#define GAME_MWWORLD_INVENTORYSTORE_H
#include "containerstore.hpp"
namespace MWWorld
{
///< \brief Variant of the ContainerStore for NPCs
class InventoryStore : public ContainerStore
{
};
}
#endif