22 lines
557 B
C++
22 lines
557 B
C++
#ifndef IRENDERABLE_H
|
|
#define IRENDERABLE_H
|
|
|
|
#include "ERenderOptions.h"
|
|
#include "SViewInfo.h"
|
|
#include <Common/types.h>
|
|
|
|
class CRenderer;
|
|
|
|
class IRenderable
|
|
{
|
|
public:
|
|
IRenderable() {}
|
|
virtual ~IRenderable() {}
|
|
virtual void AddToRenderer(CRenderer* pRenderer, const SViewInfo& ViewInfo) = 0;
|
|
virtual void Draw(ERenderOptions /*options*/, const SViewInfo& /*ViewInfo*/) {}
|
|
virtual void DrawAsset(ERenderOptions /*options*/, u32 /*asset*/, const SViewInfo& /*ViewInfo*/) {}
|
|
virtual void DrawSelection() {}
|
|
};
|
|
|
|
#endif // IRENDERABLE_H
|