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