charcoal/CharcoalBuiltin/BasicBatch.h

22 lines
339 B
C
Raw Normal View History

#pragma once
#include "PoseableBatch.h"
2018-09-19 07:52:42 +00:00
#include "BasicTypes.h"
namespace charcoal
{
namespace builtin
{
2018-09-19 07:52:42 +00:00
namespace basic
{
2018-09-19 07:52:42 +00:00
class Batch : public PoseableBatch<Vertex, Index, Renderable>
{
public:
using PoseableBatch<Vertex, Index, Renderable>::PoseableBatch;
2018-09-19 07:52:42 +00:00
protected:
void setup_vao() override;
};
}
}
}