update yaze public header, remove sprite.h, add z3_dungeon_sprite

This commit is contained in:
scawful
2025-01-06 16:21:37 -05:00
parent 4c39f02224
commit 013edb3fae
8 changed files with 7 additions and 114 deletions

View File

@@ -8,6 +8,12 @@ extern "C" {
#include <stdbool.h>
#include <stdint.h>
typedef struct dungeon_sprite {
const char* name;
uint8_t id;
uint8_t subtype;
} dungeon_sprite;
typedef enum background2 {
Off,
Parallax,
@@ -56,6 +62,7 @@ typedef struct destination {
typedef struct z3_dungeon_room {
background2 bg2;
dungeon_sprite* sprites;
object_door* doors;
staircase* staircases;
chest* chests;