mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-09 20:32:50 -05:00
14 lines
324 B
C
14 lines
324 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 *fsys, const u16 *items, int kind, int buy_sell, int deco_which, const struct MartItem *price_overrides);
|
|
|
|
#endif //POKEHEARTGOLD_MART_H
|