19 lines
346 B
C
19 lines
346 B
C
#ifndef SRENDERABLEPTR_H
|
|
#define SRENDERABLEPTR_H
|
|
|
|
#include <Common/CAABox.h>
|
|
#include <Common/types.h>
|
|
#include <Core/ERenderCommand.h>
|
|
#include <Scene/CSceneNode.h>
|
|
#include <Resource/CMaterial.h>
|
|
|
|
struct SRenderablePtr
|
|
{
|
|
IRenderable *pRenderable;
|
|
u32 Asset;
|
|
CAABox AABox;
|
|
ERenderCommand Command;
|
|
};
|
|
|
|
#endif // SRENDERABLEPTR_H
|