version 0.7
[zeRace] / bot.h
1 /* generic bot framework */
2
3 #include <stdlib.h>
4 #include <time.h>
5 #include <signal.h>
6 #include <math.h>
7 #include <string.h>
8 #include <SDL.h>
9 #include <SDL_image.h>
10 #include <SDL_net.h>
11 #include "sdl.h"
12 #include "car.h"
13 #include "tracklist.h"
14 #include "network.h"
15
16 /* ia functions */
17 char *bot_name();
18 void bot_ia(char *trackname,struct _car *car,SDL_Surface *fun,int *ku,int *kd,int *kl,int *kr);