File: better.h

package info (click to toggle)
netmaze 0.81%2Bjpg0.82-14.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,208 kB
  • ctags: 915
  • sloc: ansic: 8,277; tcl: 1,223; makefile: 66; sh: 26
file content (18 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef enum {LINKS, GERADE, RECHTS} richtung;

/* Diese Struct ersetzt einen Haufen static-variablen fuer BB */
typedef struct { int ret;
                richtung zustand;
                int counter;
                int oldx;
                int oldy;
                int ausweichen;
                int jagd;
                int freund;
                char freundname[255];
                int tod;
                int exfreund;
		int alt_opfer;
} robodat_t;

extern robodat_t robodat;