tried to reorder the program structure and build process
[NeonServV5.git] / src / bots.c
1
2 #include "bots.h"
3
4 #include "bot_NeonServ.h"
5
6 void init_bots() {
7     init_NeonServ();
8 }
9
10 void loop_bots() {
11     loop_NeonServ();
12 }
13
14 void free_bots() {
15     free_NeonServ();
16 }