mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-12 01:23:35 +00:00
19 lines
358 B
C
19 lines
358 B
C
#ifndef SRENDERABLEPTR_H
|
|
#define SRENDERABLEPTR_H
|
|
|
|
#include "ERenderCommand.h"
|
|
#include "Core/Resource/CMaterial.h"
|
|
#include "Core/Scene/CSceneNode.h"
|
|
#include <Common/types.h>
|
|
#include <Math/CAABox.h>
|
|
|
|
struct SRenderablePtr
|
|
{
|
|
IRenderable *pRenderable;
|
|
u32 ComponentIndex;
|
|
CAABox AABox;
|
|
ERenderCommand Command;
|
|
};
|
|
|
|
#endif // SRENDERABLEPTR_H
|