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