ad_astra/space_game/SpaceGame/src/objects/ai/ai.h
schmelczerandras 26e48fd997 Enhance AI
2020-04-19 16:45:58 +02:00

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