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

18 lines
303 B
C

#ifndef IMAGE_H_
#define IMAGE_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern const uint8_t IMAGE_PACKAGE[];
extern int IMAGE_IMAGE_OFFSET;
extern int IMAGE_IMAGE_SIZE;
#ifdef __cplusplus
}
#endif
#define IMAGE_IMAGE_DATA (IMAGE_PACKAGE + IMAGE_IMAGE_OFFSET)
#endif