mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* Fixing upper/lower case for includes types.h, zconf.h and zlib.h were renamed so that global includes like Types.h are not used.
19 lines
524 B
C
19 lines
524 B
C
#include "types.h"
|
|
|
|
typedef struct AILIST
|
|
{
|
|
UINT8 ubID;
|
|
INT8 bPriority;
|
|
UINT8 ubUnused;
|
|
struct AILIST * pNext;
|
|
} AILIST;
|
|
|
|
#define MAX_AI_PRIORITY 100
|
|
|
|
extern void ClearAIList( void );
|
|
extern AILIST * CreateNewAIListEntry( UINT8 ubNewEntry, UINT8 ubID, INT8 bAlertStatus );
|
|
extern BOOLEAN InsertIntoAIList( UINT8 ubID, INT8 bAlertStatus );
|
|
extern UINT8 RemoveFirstAIListEntry( void );
|
|
extern BOOLEAN BuildAIListForTeam( INT8 bTeam );
|
|
extern BOOLEAN MoveToFrontOfAIList( UINT8 ubID );
|