charcoal/CharcoalBuiltin/BasicBatch.h

21 lines
335 B
C
Raw Normal View History

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