17 lines
247 B
C
17 lines
247 B
C
|
#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;
|
||
|
}
|
||
|
}
|
||
|
}
|