charcoal/charcoal-builtin/TextTypes.h

18 lines
262 B
C++

#pragma once
#include <charcoal/TextureRenderable.h>
#include "BuiltinTypes.h"
namespace charcoal
{
namespace builtin
{
namespace text
{
typedef PTVertex Vertex;
typedef Index Index;
typedef TextureRenderable<Vertex, Index> Renderable;
}
}
}