blade brothers decomped

This commit is contained in:
theo3
2020-06-15 15:47:32 -07:00
parent 1888f4d07a
commit 7bb61194f4
9 changed files with 231 additions and 417 deletions
+1 -10
View File
@@ -1,14 +1,5 @@
#ifndef ENTITYDATA_H
#define ENTITYDATA_H
#include "global.h"
typedef struct {
u8 entityType;
u8 field_0x1;
u8 entitySubtype;
u8 entityParameter1;
u32 entityParameter2;
u16 xPos;
u16 yPos;
u32 spritePtr;
} EntityData;
#endif
+4
View File
@@ -46,6 +46,10 @@ typedef struct {
u8 unk6;
u8 filler15[75];
u8 unk7;
u32 filler16[7];
u8 filler17[3];
u8 unk71;
u32 unk8;
} LinkState;
typedef struct {
+12
View File
@@ -46,6 +46,18 @@ typedef struct {
u32 greatFairyState;
} RoomVars;
//Packets used to store which entities to load in a room
typedef struct {
u8 entityType;
u8 field_0x1;
u8 entitySubtype;
u8 entityParameter1;
u32 entityParameter2;
u16 xPos;
u16 yPos;
u32 spritePtr;
} EntityData;
extern RoomControls gRoomControls;
extern RoomVars gRoomVars;
#endif