mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-13 22:50:04 -05:00
14 lines
332 B
C
14 lines
332 B
C
#ifndef POKEHEARTGOLD_MART_H
|
|
#define POKEHEARTGOLD_MART_H
|
|
|
|
#include "script.h"
|
|
|
|
struct MartItem {
|
|
u16 item_id;
|
|
u16 cost;
|
|
};
|
|
|
|
void InitMartUI(TaskManager *taskManager, FieldSystem *fieldSystem, const u16 *items, int kind, int buy_sell, int deco_which, const struct MartItem *price_overrides);
|
|
|
|
#endif // POKEHEARTGOLD_MART_H
|