2f6c5ee319
Almost there. Just an odd linker error so far.
23 lines
360 B
C++
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;
|
|
}
|
|
}
|
|
} |