22 lines
339 B
C++
22 lines
339 B
C++
#pragma once
|
|
|
|
#include "PoseableBatch.h"
|
|
#include "BasicTypes.h"
|
|
|
|
namespace charcoal
|
|
{
|
|
namespace builtin
|
|
{
|
|
namespace basic
|
|
{
|
|
class Batch : public PoseableBatch<Vertex, Index, Renderable>
|
|
{
|
|
public:
|
|
using PoseableBatch<Vertex, Index, Renderable>::PoseableBatch;
|
|
|
|
protected:
|
|
void setup_vao() override;
|
|
};
|
|
}
|
|
}
|
|
} |