#ifndef GAME_MWWORLD_CONTAINERSTORE_H #define GAME_MWWORLD_CONTAINERSTORE_H #include namespace MWWorld { template struct ContainerStore { ESMS::CellRefList potions; ESMS::CellRefList appas; ESMS::CellRefList armors; ESMS::CellRefList books; ESMS::CellRefList clothes; ESMS::CellRefList ingreds; ESMS::CellRefList lights; ESMS::CellRefList lockpicks; ESMS::CellRefList miscItems; ESMS::CellRefList probes; ESMS::CellRefList repairs; ESMS::CellRefList weapons; }; } #endif