convert line ends
[canaan.git] / prj / cam / src / engfeat / media.h
blob73241582388c23ef3c63db37ec8ef827feccad47
1 /*
2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
4 */
6 // $Header: r:/t2repos/thief2/src/engfeat/media.h,v 1.4 2000/01/29 13:19:47 adurant Exp $
7 // used internally for undecided regions
8 #pragma once
9 #define NO_MEDIUM -1
11 #define MEDIA_SOLID 0
12 #define MEDIA_AIR 1
13 #define MEDIA_WATER 2
15 // These are used for doors. They let us make cell boundaries in mid-air,
16 // mid-water, etc.
17 #define MEDIA_SOLID_PERSIST 3
18 #define MEDIA_AIR_PERSIST 4
19 #define MEDIA_WATER_PERSIST 5
21 // This would really mess with the media_op arrays.
22 //#define SPECIAL_MEDIUM(x) ((x) >= 64)