1 2 3 4 5 6 7 8 9 10 11 12
#ifndef OXEN_GAME_H #define OXEN_GAME_H #include <stdbool.h> #include <stdint.h> #define MIN_CARD 1 #define MAX_CARD 104 void start_game(const bool servermode, const char* addr, const char* port); #endif // OXEN_GAME_H