charcoal/charcoal-builtin/TextTypes.h
2022-08-01 19:07:37 -05:00

18 lines
279 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;
}
}
}