mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-25 07:28:17 -05:00
15 lines
270 B
C
15 lines
270 B
C
#ifndef GUARD_DUNGEON_PORTRAIT_PLACEMENT_H
|
|
#define GUARD_DUNGEON_PORTRAIT_PLACEMENT_H
|
|
|
|
#include "structs/str_position.h"
|
|
|
|
struct PortraitPlacementInfo
|
|
{
|
|
DungeonPos pos;
|
|
bool8 flip;
|
|
};
|
|
|
|
const struct PortraitPlacementInfo *GetPortraitPlacementInfo(u8 id);
|
|
|
|
#endif
|