2018-09-15 01:29:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PoseableBatch.h"
|
2018-09-19 07:52:42 +00:00
|
|
|
#include "BasicTypes.h"
|
2018-09-15 01:29:05 +00:00
|
|
|
|
|
|
|
namespace charcoal
|
|
|
|
{
|
|
|
|
namespace builtin
|
|
|
|
{
|
2018-09-19 07:52:42 +00:00
|
|
|
namespace basic
|
2018-09-15 01:29:05 +00:00
|
|
|
{
|
2018-09-19 07:52:42 +00:00
|
|
|
class Batch : public PoseableBatch<Vertex, Index, Renderable>
|
|
|
|
{
|
|
|
|
public:
|
2018-10-13 18:07:08 +00:00
|
|
|
using PoseableBatch<Vertex, Index, Renderable>::PoseableBatch;
|
2018-09-15 01:29:05 +00:00
|
|
|
|
2018-09-19 07:52:42 +00:00
|
|
|
protected:
|
|
|
|
void setup_vao() override;
|
|
|
|
};
|
|
|
|
}
|
2018-09-15 01:29:05 +00:00
|
|
|
}
|
|
|
|
}
|