16 lines
215 B
C++
16 lines
215 B
C++
#pragma once
|
|
|
|
#include "BuiltinTypes.h"
|
|
|
|
namespace charcoal
|
|
{
|
|
namespace builtin
|
|
{
|
|
namespace basic
|
|
{
|
|
typedef PVertex Vertex;
|
|
typedef Index Index;
|
|
typedef RenderableT<Vertex, Index> Renderable;
|
|
}
|
|
}
|
|
} |