mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 00:32:20 -05:00
22 lines
999 B
C
22 lines
999 B
C
#ifndef POKEPLATINUM_UNDERGROUND_VENDORS_H
|
|
#define POKEPLATINUM_UNDERGROUND_VENDORS_H
|
|
|
|
#include "generated/traps.h"
|
|
|
|
#include "field/field_system_decl.h"
|
|
#include "underground/menus.h"
|
|
|
|
int UndergroundVendors_ReturnFFFE(void *unused);
|
|
void *UndergroundVendors_ReturnNull(int unused0, FieldSystem *unused1, int unused2);
|
|
int UndergroundVendors_PrintNPCMessage(int bankEntry);
|
|
void UndergroundVendors_EraseMessageBoxWindow(void);
|
|
void UndergroundVendors_SetTreasureNameForPrinter(int index, int treasureID);
|
|
void UndergroundVendors_SetTrapNameForPrinter(int index, enum Trap trapID);
|
|
void UndergroundVendors_SetGoodNameForPrinter(int index, enum Good goodID);
|
|
void UndergroundMenu_PrintMenuDescription(UndergroundMenu *menu, int bankEntry);
|
|
void UndergroundMenu_RemoveDescriptionWindow(UndergroundMenu *menu);
|
|
void UndergroundMenu_RemoveDescriptionWindowInstant(UndergroundMenu *menu);
|
|
void UndergroundVendors_StartShopMenuTask(FieldSystem *fieldSystem);
|
|
|
|
#endif // POKEPLATINUM_UNDERGROUND_VENDORS_H
|