convert line ends
[canaan.git] / prj / cam / src / ai / aipthtyp.h
blobc3e3e17f5117b68ff62e17d36b89d546b16b624c
1 /*
2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
4 */
6 ///////////////////////////////////////////////////////////////////////////////
7 // $Header: r:/t2repos/thief2/src/ai/aipthtyp.h,v 1.4 2000/03/01 13:02:57 bfarquha Exp $
8 //
9 //
11 #ifndef __AIPTHTYP_H
12 #define __AIPTHTYP_H
14 #pragma once
16 extern BOOL g_fAIPathFindInited;
18 ///////////////////////////////////////////////////////////////////////////////
20 typedef unsigned tAIPathCellID;
21 typedef unsigned tAIPathVertexID;
22 typedef unsigned tAIPathCell2CellLinkID;
23 typedef unsigned tAIPathCell2VertexLinkID;
25 typedef ushort tAIPathCellIDPacked;
26 typedef ushort tAIPathVertexIDPacked;
27 typedef ushort tAIPathCell2CellLinkIDPacked;
28 typedef ushort tAIPathCell2VertexLinkIDPacked;
30 typedef ushort tAIPathZone;
32 typedef uchar tAIPathOkBits;
34 typedef enum
36 kAIZone_Normal = 0,
37 kAIZone_NormalLVL,
38 kAIZone_HighStrike,
39 kAIZone_HighStrikeLVL,
40 kAIZone_Num
41 } eAIPathZoneType;
43 ///////////////////////////////////////////////////////////////////////////////
45 #endif /* !__AIPTHTYP_H */