Files
cup_edit/thermion_dart/native/include/material/grid.h
2024-09-05 22:19:27 +08:00

14 lines
239 B
C

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