charcoal/CharcoalBuiltin/LitTypes.h

17 lines
244 B
C
Raw Normal View History

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