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