charcoal/CharcoalBuiltin/TexturedTypes.h

18 lines
266 B
C
Raw Normal View History

2018-09-19 07:52:42 +00:00
#pragma once
#include <charcoal/TextureRenderable.h>
2018-09-19 07:52:42 +00:00
#include "BuiltinTypes.h"
namespace charcoal
{
namespace builtin
{
namespace textured
{
typedef PTVertex Vertex;
typedef Index Index;
typedef TextureRenderable<Vertex, Index> Renderable;
}
}
}