Files
palladium/include/pd/lithium/command.hpp

24 lines
419 B
C++
Raw Normal View History

2025-04-24 16:39:24 +02:00
#pragma once
#include <pd/core/pool.hpp>
2025-04-24 16:39:24 +02:00
#include <pd/lithium/vertex.hpp>
namespace PD {
namespace Li {
class Command {
2025-04-24 16:39:24 +02:00
public:
Command() {}
~Command() {}
int Layer = 0;
ptr Tex = 0;
Vertex* FirstVertex = nullptr;
u16* FirstIndex = nullptr;
size_t VertexCount;
size_t IndexCount;
PD::Pool<Vertex>* pVpool;
PD::Pool<u16>* pIpool;
};
} // namespace Li
} // namespace PD