1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 18:37:08 +00:00
OpenMW/apps/openmw/mwclass/ingredient.cpp

27 lines
567 B
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "ingredient.hpp"
#include <components/esm/loadingr.hpp>
2010-08-03 15:11:41 +00:00
#include <components/esm_store/cell_store.hpp>
#include "../mwworld/ptr.hpp"
2010-08-03 13:24:44 +00:00
namespace MWClass
{
2010-08-03 15:11:41 +00:00
std::string Ingredient::getName (const MWWorld::Ptr& ptr) const
{
ESMS::LiveCellRef<ESM::Ingredient, MWWorld::RefData> *ref =
ptr.get<ESM::Ingredient>();
return ref->base->name;
}
2010-08-03 13:24:44 +00:00
void Ingredient::registerSelf()
{
boost::shared_ptr<Class> instance (new Ingredient);
registerClass (typeid (ESM::Ingredient).name(), instance);
}
}