Match sub_8083660

This commit is contained in:
DizzyEggg
2025-04-04 11:25:31 +02:00
parent 537828bb99
commit be39215686
7 changed files with 97 additions and 261 deletions

View File

@@ -12,6 +12,7 @@
#define DUNGEON_MAX_SIZE_X 56
#define DUNGEON_MAX_SIZE_Y 32
#define DUNGEON_MAX_SIZE_X_MUL_Y (DUNGEON_MAX_SIZE_X * DUNGEON_MAX_SIZE_Y)
#define DUNGEON_MAX_WILD_POKEMON 16
#define DUNGEON_MAX_WILD_POKEMON_BODY_SIZE 16
#define DUNGEON_MAX_POKEMON (MAX_TEAM_MEMBERS + DUNGEON_MAX_WILD_POKEMON)

View File

@@ -1,6 +1,13 @@
#ifndef GUARD_STR_POSITION_H
#define GUARD_STR_POSITION_H
// Used in dungeon generation and sub_8083660
struct PositionU8
{
u8 x;
u8 y;
};
// size: 0x4
typedef struct DungeonPos
{