charcoal/CharcoalBuiltin/LitTypes.h

17 lines
216 B
C
Raw Normal View History

#pragma once
#include "BuiltinTypes.h"
namespace charcoal
{
namespace builtin
{
namespace lit
{
typedef PNMVertex Vertex;
typedef Index Index;
typedef RenderableT<Vertex, Index> Renderable;
}
}
}