2018-10-15 23:53:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BuiltinTypes.h"
|
|
|
|
|
|
|
|
namespace charcoal
|
|
|
|
{
|
|
|
|
namespace builtin
|
|
|
|
{
|
|
|
|
namespace lit
|
|
|
|
{
|
2018-10-16 02:38:59 +00:00
|
|
|
typedef PhongLight Light;
|
2018-10-15 23:53:22 +00:00
|
|
|
typedef PNMVertex Vertex;
|
|
|
|
typedef Index Index;
|
|
|
|
typedef RenderableT<Vertex, Index> Renderable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|