charcoal/CharcoalBuiltin/LitShadowedBatch.h

22 lines
351 B
C++

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