mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-30 19:21:25 +00:00
19 lines
331 B
C
19 lines
331 B
C
#ifndef SMESHPOINTER_H
|
|
#define SMESHPOINTER_H
|
|
|
|
#include <Common/CAABox.h>
|
|
#include <Common/types.h>
|
|
#include <Core/ERenderCommand.h>
|
|
#include <Scene/CSceneNode.h>
|
|
#include <Resource/CMaterial.h>
|
|
|
|
struct SMeshPointer
|
|
{
|
|
CSceneNode *pNode;
|
|
u32 Asset;
|
|
CAABox AABox;
|
|
ERenderCommand Command;
|
|
};
|
|
|
|
#endif // SMESHPOINTER_H
|