2016-03-01 15:47:10 +00:00
|
|
|
#ifndef A_KEYS_H
|
|
|
|
#define A_KEYS_H
|
|
|
|
|
2017-01-18 14:17:12 +00:00
|
|
|
class AActor;
|
2018-12-01 13:01:03 +00:00
|
|
|
class PClassActor;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2018-12-01 13:01:03 +00:00
|
|
|
int P_CheckKeys (AActor *owner, int keynum, bool remote, bool quiet = false);
|
2016-03-01 15:47:10 +00:00
|
|
|
void P_InitKeyMessages ();
|
|
|
|
int P_GetMapColorForLock (int lock);
|
2018-12-04 16:00:48 +00:00
|
|
|
int P_GetMapColorForKey (AActor *key);
|
2018-12-01 13:01:03 +00:00
|
|
|
int P_GetKeyTypeCount();
|
|
|
|
PClassActor *P_GetKeyType(int num);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
#endif
|