[go: up one dir, main page]

File: ai.h

package info (click to toggle)
zatacka 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,924 kB
  • sloc: ansic: 3,456; sh: 1,250; makefile: 34
file content (12 lines) | stat: -rwxr-xr-x 238 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef AI_H
#define AI_H

#include <math.h>
#include "common.h"

#define AI_WEP_PROB 0.0001

char pollAi(double posx, double posy, double dir, unsigned char id,
            unsigned char *hitmap, unsigned int w, unsigned int h);

#endif