mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-03-17 11:10:09 +01:00
22 lines
345 B
C
22 lines
345 B
C
#ifndef MISC_CALLBACK_FUNC_H
|
|
#define MISC_CALLBACK_FUNC_H
|
|
|
|
#include "bygfoot.h"
|
|
|
|
void
|
|
misc_callback_start_game(void);
|
|
|
|
void
|
|
misc_callback_show_team_list(GtkWidget *widget, const gchar *country_file);
|
|
|
|
void
|
|
misc_callback_add_player(void);
|
|
|
|
void
|
|
misc_callback_remove_user(GdkEventButton *event);
|
|
|
|
void
|
|
misc_callback_pause_live_game(void);
|
|
|
|
#endif
|