thunderbrew/src/gx/CGxBatch.hpp
2023-01-02 13:17:18 -06:00

18 lines
303 B
C++

#ifndef GX_C_GX_BATCH_HPP
#define GX_C_GX_BATCH_HPP
#include "gx/Types.hpp"
#include <cstdint>
class CGxBatch {
public:
// Member variables
EGxPrim m_primType;
uint32_t m_start;
uint32_t m_count;
uint16_t m_minIndex;
uint16_t m_maxIndex;
};
#endif