Introduce pet-projects dir
[lcapit-junk-code.git] / pet-projects / games / microballs / computer.h
blobc315564c763527470cc09250aa8cc8dd0db97a01
1 /*
2 * This file is licensed under the GPLv2 license
3 *
4 * Luiz Fernando N. Capitulino
5 * <lcapitulino@gmail.com>
6 */
7 #ifndef COMPUTER_H
8 #define COMPUTER_H
10 void computer_init(void);
11 int is_computer_turn(void);
12 void computer_move(const struct game_board *board,
13 struct user_move *move);
15 #endif /* COMPUTER_H */