mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-25 07:28:17 -05:00
25 lines
386 B
C
25 lines
386 B
C
#ifndef GUARD_DUNGEON_MAPPARAM_H
|
|
#define GUARD_DUNGEON_MAPPARAM_H
|
|
|
|
#include "dungeon.h"
|
|
#include "structs/str_packed_pokemon_data.h"
|
|
|
|
struct DungeonMapParam1
|
|
{
|
|
s16 unk0;
|
|
s16 unk2;
|
|
s16 unk4;
|
|
s16 unk6[5];
|
|
};
|
|
|
|
struct DungeonMapParam2
|
|
{
|
|
struct DungeonMapParam1 **unk0;
|
|
FloorProperties *unk4;
|
|
u16 **unk8;
|
|
PackedPokemonData **unkC;
|
|
u16 **unk10;
|
|
};
|
|
|
|
#endif
|