2012-08-04 10:54:37 +00:00
|
|
|
// Copyright (C) 1999-2000 Id Software, Inc.
|
2012-01-22 21:34:33 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* name: ai_cmd.h
|
|
|
|
*
|
|
|
|
* desc: Quake3 bot AI
|
|
|
|
*
|
2012-08-04 10:54:37 +00:00
|
|
|
* $Archive: /StarTrek/Code-DM/game/ai_cmd.h $
|
|
|
|
* $Author: Jmonroe $
|
|
|
|
* $Revision: 1 $
|
|
|
|
* $Modtime: 1/21/00 10:12p $
|
|
|
|
* $Date: 1/25/00 6:26p $
|
2012-01-22 21:34:33 +00:00
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2013-09-03 21:01:15 +00:00
|
|
|
#ifndef AI_CMD_H_
|
|
|
|
#define AI_CMD_H_
|
|
|
|
|
2013-08-12 18:02:35 +00:00
|
|
|
#include "g_local.h"
|
|
|
|
|
2014-10-13 20:34:23 +00:00
|
|
|
int32_t BotMatchMessage(bot_state_t* bs, char* message);
|
2014-10-13 21:44:29 +00:00
|
|
|
|
2014-10-13 20:34:23 +00:00
|
|
|
void BotPrintTeamGoal(bot_state_t* bs);
|
2012-01-22 21:34:33 +00:00
|
|
|
|
2013-09-03 21:01:15 +00:00
|
|
|
#endif /* AI_CMD_H_ */
|
|
|
|
|
|
|
|
|