convert line ends
[canaan.git] / prj / cam / src / ai / aiwr.h
blob921dd90afd5390e8b79b1504aea0872e569b825d
1 /*
2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
4 */
6 ///////////////////////////////////////////////////////////////////////////////
7 // $Header: r:/t2repos/thief2/src/ai/aiwr.h,v 1.4 2000/01/31 09:34:14 adurant Exp $
8 //
9 //
10 #pragma once
12 #ifndef __AIWR_H
13 #define __AIWR_H
15 #include <objtype.h>
16 #include <wrtype.h>
18 float AIGetObjectLighting(ObjID id);
20 BOOL AIIsInWorld(ObjID id);
22 enum eAIRaycastFlags
24 kAIR_ZeroEpsilon = 0x01,
25 kAIR_NoHintWarn = 0x02,
26 kAIR_VsObjects = 0x04,
29 BOOL AIRaycast(const Location *start_loc, Location *end_loc,
30 Location *hit_loc, unsigned flags = 0);
33 #endif /* !__AIWR_H */