Files
cup_edit/thermion_dart/native/include/material/grid.h
2025-05-07 17:06:38 +08:00

18 lines
295 B
C

#ifndef GRID_H_
#define GRID_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern const uint8_t GRID_PACKAGE[];
extern int GRID_GRID_OFFSET;
extern int GRID_GRID_SIZE;
#ifdef __cplusplus
}
#endif
#define GRID_GRID_DATA (GRID_PACKAGE + GRID_GRID_OFFSET)
#endif