mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
16 lines
222 B
C++
16 lines
222 B
C++
|
#ifndef OPENMW_COMPONENTS_NIF_PARENT_HPP
|
||
|
#define OPENMW_COMPONENTS_NIF_PARENT_HPP
|
||
|
|
||
|
namespace Nif
|
||
|
{
|
||
|
struct NiNode;
|
||
|
|
||
|
struct Parent
|
||
|
{
|
||
|
const NiNode& mNiNode;
|
||
|
const Parent* mParent;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|