diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-09-09 12:06:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-09 12:06:15 -0500 |
commit | eb280768a48eba5332468b463aab962e1eafb18e (patch) | |
tree | 8cc165f2f24f7b09823ab43a91a281ef22b7f6a3 /include/lottery_corner.h | |
parent | 675bdb52508deb085813588203baa7cd9c9de24c (diff) | |
parent | 10a525d5a072892d2e94c2cf31d5abc9197cae20 (diff) |
Merge pull request #23 from DizzyEggg/clean_up2
Splitting, labelling, decomp
Diffstat (limited to 'include/lottery_corner.h')
-rw-r--r-- | include/lottery_corner.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/lottery_corner.h b/include/lottery_corner.h new file mode 100644 index 000000000..5e2346d37 --- /dev/null +++ b/include/lottery_corner.h @@ -0,0 +1,12 @@ +#ifndef GUARD_LOTTERY_CORNER_H +#define GUARD_LOTTERY_CORNER_H + +void ResetLotteryCorner(void); +void SetRandomLotteryNumber(u16 i); +void RetrieveLotteryNumber(void); +void PickLotteryCornerTicket(void); +void SetLotteryNumber(u32 lotteryNum); +u32 GetLotteryNumber(void); +void SetLotteryNumber16_Unused(u16 lotteryNum); + +#endif // GUARD_LOTTERY_CORNER_H |