feat: add gizmo.glb to assets/resources

This commit is contained in:
Nick Fisher
2024-12-11 20:58:57 +08:00
parent 5564be9ce9
commit 6b36d67ed7
7 changed files with 718 additions and 1 deletions
@@ -0,0 +1,13 @@
#ifndef GIZMO_GLB_H_
#define GIZMO_GLB_H_
#include <stdint.h>
extern "C" {
extern const uint8_t GIZMO_GLB_PACKAGE[];
extern int GIZMO_GLB_GIZMO_OFFSET;
extern int GIZMO_GLB_GIZMO_SIZE;
}
#define GIZMO_GLB_GIZMO_DATA (GIZMO_GLB_PACKAGE + GIZMO_GLB_GIZMO_OFFSET)
#endif