blob: 66d8393890669e0593642849c021d04492372ae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef GUARD_BERRY_BLENDER_H
#define GUARD_BERRY_BLENDER_H
// Indices into gSendCmd / gRecvCmds
#define BLENDER_COMM_INPUT_STATE 0
#define BLENDER_COMM_RESP 1
#define BLENDER_COMM_SCORE 2
#define BLENDER_COMM_STOP_TYPE 2 // re-used
#define BLENDER_COMM_PLAYER_ID 3
#define BLENDER_COMM_UNUSED 4
#define BLENDER_COMM_PROGRESS_BAR 5
#define BLENDER_COMM_ARROW_POS 6
extern u8 gInGameOpponentsNo;
void DoBerryBlending(void);
u16 GetBlenderArrowPosition(void);
void ShowBerryBlenderRecordWindow(void);
#endif // GUARD_BERRY_BLENDER_H
|