2018-09-19 07:52:42 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BuiltinTypes.h"
|
|
|
|
|
2018-10-14 04:52:32 +00:00
|
|
|
|
2018-09-19 07:52:42 +00:00
|
|
|
namespace charcoal
|
|
|
|
{
|
|
|
|
namespace builtin
|
|
|
|
{
|
|
|
|
namespace basic
|
|
|
|
{
|
|
|
|
typedef PVertex Vertex;
|
|
|
|
typedef Index Index;
|
|
|
|
typedef RenderableT<Vertex, Index> Renderable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|