Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / traffic_navigation / highways.h @ 1902

History | View | Annotate | Download (343 Bytes)

1 1876 markwill
#ifndef HIGHWAYS_H
2
#define HIGHWAYS_H
3
4 1902 markwill
int highwayFSM(void);   //FSM for dogs
5
void highwayStart(void);//enables the option to merge, can only merge once
6 1876 markwill
7 1902 markwill
/*lets you change these variables in other files*/
8
9
extern int counti;
10
extern int canMerge;
11
extern long averagei;
12
extern int states;
13
14 1889 markwill
#define COUNT_MAX 12
15 1902 markwill
#define PASS_DISTANCE 200
16 1876 markwill
#endif