mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
17 lines
No EOL
247 B
C
17 lines
No EOL
247 B
C
#ifndef GX_BATCH_H
|
|
#define GX_BATCH_H
|
|
|
|
#include "gx/types.h"
|
|
|
|
DECLARE_STRUCT(CGxBatch);
|
|
|
|
struct CGxBatch {
|
|
// Member variables
|
|
EGxPrim m_primType;
|
|
uint32_t m_start;
|
|
uint32_t m_count;
|
|
uint16_t m_minIndex;
|
|
uint16_t m_maxIndex;
|
|
};
|
|
|
|
#endif |