charcoal/CharcoalBuiltin/LitShadowedTypes.h

17 lines
247 B
C
Raw Normal View History

2018-09-19 07:52:42 +00:00
#pragma once
#include "BuiltinTypes.h"
namespace charcoal
{
namespace builtin
{
namespace litshadowed
{
typedef PNMVertex Vertex;
typedef Index Index;
typedef RenderableT<Vertex, Index> Renderable;
typedef Light Light;
}
}
}