charcoal/CharcoalBuiltin/SpecifiedTypes.h
elipzer 2f6c5ee319 Starting off with specified rendering.
Almost there. Just an odd linker error so far.
2018-10-13 15:26:22 -04:00

23 lines
360 B
C++

#pragma once
#include "BuiltinTypes.h"
#include "BasicTypes.h"
#include "BasicShaderProgram.h"
namespace charcoal
{
namespace builtin
{
namespace specified
{
// Just use the basic types
typedef basic::Vertex Vertex;
typedef basic::Index Index;
typedef basic::Renderable Renderable;
typedef basic::ShaderProgram ShaderProgram;
}
}
}