charcoal/CharcoalBuiltin/TexturedBatch.h

24 lines
384 B
C++

#pragma once
#include "PoseableBatch.h"
#include "TexturedTypes.h"
namespace charcoal
{
namespace builtin
{
namespace textured
{
class Batch : public PoseableBatch<Vertex, Index, Renderable>
{
public:
using PoseableBatch<Vertex, Index, Renderable>::PoseableBatch;
void preprender() const override;
protected:
void setup_vao() override;
};
}
}
}