#pragma once #include #include namespace charcoal { namespace builtin { template > class Batch : public Prerenderable, public charcoal::Batch { public: using charcoal::Batch::Batch; void prerender() override { charcoal::Batch::prerender(); } }; } }