mirror of
https://github.com/1dot13/source.git
synced 2026-09-09 14:46:05 +02:00
Import changes from the local SVN working copy
This commit is contained in:
+5
-5
@@ -2,7 +2,7 @@
|
||||
|
||||
typedef struct AILIST
|
||||
{
|
||||
UINT8 ubID;
|
||||
UINT16 ubID;
|
||||
INT8 bPriority;
|
||||
UINT8 ubUnused;
|
||||
struct AILIST * pNext;
|
||||
@@ -11,8 +11,8 @@ typedef struct 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 AILIST * CreateNewAIListEntry( UINT16 ubNewEntry, UINT16 ubID, INT8 bAlertStatus );
|
||||
extern BOOLEAN InsertIntoAIList( UINT16 ubID, INT8 bAlertStatus );
|
||||
extern UINT16 RemoveFirstAIListEntry( void );
|
||||
extern BOOLEAN BuildAIListForTeam( INT8 bTeam );
|
||||
extern BOOLEAN MoveToFrontOfAIList( UINT8 ubID );
|
||||
extern BOOLEAN MoveToFrontOfAIList( UINT16 ubID );
|
||||
|
||||
Reference in New Issue
Block a user