mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:19:55 +00:00
26 lines
533 B
C++
26 lines
533 B
C++
|
|
#include "probe.hpp"
|
|
|
|
#include <components/esm/loadlocks.hpp>
|
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
std::string Probe::getName (const MWWorld::Ptr& ptr) const
|
|
{
|
|
ESMS::LiveCellRef<ESM::Probe, MWWorld::RefData> *ref =
|
|
ptr.get<ESM::Probe>();
|
|
|
|
return ref->base->name;
|
|
}
|
|
|
|
void Probe::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new Probe);
|
|
|
|
registerClass (typeid (ESM::Probe).name(), instance);
|
|
}
|
|
}
|