charcoal/CharcoalBuiltin/SpecifiedBatch.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

19 lines
286 B
C++

#pragma once
#include "SpecifiedPoseableBatch.h"
#include "SpecifiedTypes.h"
namespace charcoal
{
namespace builtin
{
namespace specified
{
class Batch : public SpecifiedPoseableBatch<Vertex, Index, Renderable>
{
protected:
void setup_vao() override;
};
}
}
}