mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
20 lines
402 B
C++
20 lines
402 B
C++
#ifndef OPENMW_MWCLASS_CLASSMODEL_H
|
|
#define OPENMW_MWCLASS_CLASSMODEL_H
|
|
|
|
#include "../mwworld/livecellref.hpp"
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include <string_view>
|
|
|
|
namespace MWClass
|
|
{
|
|
template <class Class>
|
|
std::string_view getClassModel(const MWWorld::ConstPtr& ptr)
|
|
{
|
|
const MWWorld::LiveCellRef<Class>* ref = ptr.get<Class>();
|
|
return ref->mBase->mModel;
|
|
}
|
|
}
|
|
|
|
#endif
|