charcoal/OpenGLEngine/BasicTypes.h
2018-09-19 03:52:42 -04:00

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;
}
}
}