mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 06:39:59 +00:00
16 lines
257 B
C++
16 lines
257 B
C++
#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
|