mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-19 21:47:34 -05:00
14 lines
290 B
C
14 lines
290 B
C
#ifndef GUARD_STR_DUNGEON_MAIL_SEED_H
|
|
#define GUARD_STR_DUNGEON_MAIL_SEED_H
|
|
|
|
#include "structs/str_dungeon_location.h"
|
|
|
|
// size: 0x8
|
|
typedef struct DungeonMailSeed
|
|
{
|
|
/* 0x0 */ DungeonLocation location;
|
|
/* 0x4 */ u32 seed;
|
|
} DungeonMailSeed;
|
|
|
|
#endif // GUARD_STR_DUNGEON_MAIL_SEED_H
|