forked from teamnwah/openmw-tes3coop
added InventoryStore class (doesn't do anything yet)
parent
5562653578
commit
84c8cd3720
@ -0,0 +1,2 @@
|
||||
|
||||
#include "inventorystore.hpp"
|
@ -0,0 +1,16 @@
|
||||
#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
|
Loading…
Reference in New Issue