charcoal/CharcoalBuiltin/LitTypes.h
elipzer 98c6d3868c Added the base to the lit pipeline.
Still need to allow for adding lights!
2018-10-15 19:53:22 -04:00

17 lines
216 B
C++

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