#pragma once #include #include namespace PD { namespace Li { class Command { public: Command() {} ~Command() {} int Layer = 0; ptr Tex = 0; Vertex* FirstVertex = nullptr; u16* FirstIndex = nullptr; size_t VertexCount; size_t IndexCount; PD::Pool* pVpool; PD::Pool* pIpool; }; } // namespace Li } // namespace PD