charcoal/CharcoalBuiltin/ImageTypes.h
elipzer 5db5ce971c Probably BREAKING - Moved everything into proper directories
Also added a copy pre-build even for .h files into the include
directory for charcoal and charcoal-builtin
2018-10-10 23:56:39 -04:00

19 lines
343 B
C++

#pragma once
#include "BuiltinTypes.h"
#include "SpriteBatch.h"
namespace charcoal
{
namespace builtin
{
namespace image
{
typedef PTVertex Vertex;
typedef Index Index;
typedef TextureRenderable<Vertex, Index> Renderable;
typedef SpriteBatch<Vertex, Index, offsetof(Vertex, position), offsetof(Vertex, uv)> Batch;
}
}
}