mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
36 lines
679 B
C++
36 lines
679 B
C++
|
#ifndef OPENMW_COMPONENTS_NIFOSG_NODEINDEXHOLDER_H
|
||
|
#define OPENMW_COMPONENTS_NIFOSG_NODEINDEXHOLDER_H
|
||
|
|
||
|
#include <osg/Object>
|
||
|
|
||
|
namespace NifOsg
|
||
|
{
|
||
|
|
||
|
class NodeIndexHolder : public osg::Object
|
||
|
{
|
||
|
public:
|
||
|
NodeIndexHolder() = default;
|
||
|
NodeIndexHolder(int index)
|
||
|
: mIndex(index)
|
||
|
{
|
||
|
}
|
||
|
NodeIndexHolder(const NodeIndexHolder& copy, const osg::CopyOp& copyop)
|
||
|
: Object(copy, copyop)
|
||
|
, mIndex(copy.mIndex)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
META_Object(NifOsg, NodeIndexHolder)
|
||
|
|
||
|
int getIndex() const { return mIndex; }
|
||
|
|
||
|
private:
|
||
|
|
||
|
// NIF record index
|
||
|
int mIndex{0};
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|