charcoal/charcoal-builtin/LitTypes.h

16 lines
230 B
C
Raw Normal View History

2022-08-02 00:07:37 +00:00
#pragma once
#include "BuiltinTypes.h"
namespace charcoal
{
namespace builtin
{
namespace lit
{
typedef PNMVertex Vertex;
typedef Index Index;
typedef RenderableT<Vertex, Index> Renderable;
}
}
}