blob: 33cbd2cd4abf253e4952e943367f5790e4385d73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef WEB_CONTROL_H
#define WEB_CONTROL_H
void set_active_player(int pn);
void toggle_active_player();
void start_match(int mode);
void end_match();
void user_visit(int points);
void user_num_darts(int n);
void user_undo();
void user_visit_to_rem(int rem);
void update_user_rem_from_pts(int pts);
void end_boat_visit(int rem, double avg);
void handle_next();
#endif
|