2017-10-12 02:06:19 -05:00
|
|
|
#ifndef GUARD_SLOT_MACHINE_H
|
|
|
|
#define GUARD_SLOT_MACHINE_H
|
|
|
|
|
2019-02-22 16:03:35 -05:00
|
|
|
#define NUM_REELS 3
|
|
|
|
#define REEL_NUM_TAGS 21
|
|
|
|
#define REEL_TAG_HEIGHT 24
|
2019-02-07 11:24:09 -05:00
|
|
|
|
2019-02-14 23:44:18 -05:00
|
|
|
// Lucky Flags
|
2019-02-22 16:27:49 -05:00
|
|
|
#define LUCKY_BIAS_REPLAY (1 << 0)
|
|
|
|
#define LUCKY_BIAS_CHERRY (1 << 1)
|
|
|
|
#define LUCKY_BIAS_LOTAD (1 << 2)
|
|
|
|
#define LUCKY_BIAS_AZURILL (1 << 3)
|
|
|
|
#define LUCKY_BIAS_POWER (1 << 4)
|
|
|
|
#define LUCKY_BIAS_REELTIME (1 << 5)
|
|
|
|
#define LUCKY_BIAS_MIXED_777 (1 << 6)
|
|
|
|
#define LUCKY_BIAS_777 (1 << 7)
|
2019-02-14 23:44:18 -05:00
|
|
|
|
2018-08-11 17:57:20 +02:00
|
|
|
void PlaySlotMachine(u8, void (callback)(void));
|
2017-10-12 02:06:19 -05:00
|
|
|
|
|
|
|
#endif // GUARD_SLOT_MACHINE_H
|