diff options
Diffstat (limited to 'include/trade.h')
-rw-r--r-- | include/trade.h | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/include/trade.h b/include/trade.h index 8966d7305..a44388506 100644 --- a/include/trade.h +++ b/include/trade.h @@ -1,12 +1,23 @@ -// -// Created by Scott Norton on 8/30/17. -// -#ifndef POKERUBY_TRADE_H -#define POKERUBY_TRADE_H +#ifndef GUARD_TRADE_H +#define GUARD_TRADE_H + +struct SomeTradeStruct +{ + u8 unk0; + u8 unk1; + u8 unk2; + u8 unk3; + struct Window field_4; + u8 field_34; +}; + +extern struct SomeTradeStruct* gUnknown_03004828; const u8 gOtherText_MaleSymbol3[1]; const u8 gOtherText_FemaleSymbol3[1]; const u8 gOtherText_GenderlessSymbol[1]; -#endif //POKERUBY_TRADE_H +void sub_804E22C(void); + +#endif // GUARD_TRADE_H |