17 lines
256 B
C++
17 lines
256 B
C++
#pragma once
|
|
|
|
#include "TextureRenderable.h"
|
|
#include "BuiltinTypes.h"
|
|
|
|
namespace charcoal
|
|
{
|
|
namespace builtin
|
|
{
|
|
namespace textured
|
|
{
|
|
typedef PTVertex Vertex;
|
|
typedef Index Index;
|
|
typedef TextureRenderable<Vertex, Index> Renderable;
|
|
}
|
|
}
|
|
} |