12 lines
265 B
C
12 lines
265 B
C
#ifndef AI_H
|
|
#define AI_H
|
|
|
|
// Between AI astronauts do actions
|
|
// there has to be at least this many frames
|
|
#define AI_ACTION_INTERVAL 15
|
|
|
|
// If there are non player controlled astronauts
|
|
// control them according to some basic rule set
|
|
void handleAI();
|
|
|
|
#endif
|