charcoal/CharcoalBuiltin/LitShadowedBatch.h

22 lines
351 B
C
Raw Normal View History

2018-09-18 20:55:32 +00:00
#pragma once
#include "PoseableBatch.h"
2018-09-19 07:52:42 +00:00
#include "LitShadowedTypes.h"
2018-09-18 20:55:32 +00:00
namespace charcoal
{
namespace builtin
{
2018-09-19 07:52:42 +00:00
namespace litshadowed
2018-09-18 20:55:32 +00:00
{
2018-09-19 07:52:42 +00:00
class Batch : public PoseableBatch<Vertex, Index, Renderable>
{
public:
using PoseableBatch<Vertex, Index, Renderable>::PoseableBatch;
2018-09-18 20:55:32 +00:00
2018-09-19 07:52:42 +00:00
protected:
void setup_vao() override;
};
}
2018-09-18 20:55:32 +00:00
}
}