convert line ends
[canaan.git] / prj / cam / src / motion / creatapi.h
blob19a64d59ad0ddf3884f93eb83ecd6cc89909b758
1 /*
2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
4 */
6 // $Header: r:/t2repos/thief2/src/motion/creatapi.h,v 1.2 2000/01/31 09:50:05 adurant Exp $
7 // This used for getting class pointers for creatures
8 // Should only be included by cpp files that want to think of creature
9 // as mesh or motor
10 #pragma once
12 #ifndef __CREATAPI_H
13 #define __CREATAPI_H
15 #include <meshtype.h>
16 #include <motrtype.h>
17 #include <objtype.h>
18 // why include these?
19 #include <meshapi.h>
20 #include <motorapi.h>
22 IMesh *CreatureGetMeshInterface(const ObjID objID);
23 IMotor *CreatureGetMotorInterface(const ObjID objID);
26 #endif