mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-08 07:41:45 +00:00
14 lines
319 B
C++
14 lines
319 B
C++
#ifndef A_KEYS_H
|
|
#define A_KEYS_H
|
|
|
|
class AActor;
|
|
class PClassActor;
|
|
|
|
int P_CheckKeys (AActor *owner, int keynum, bool remote, bool quiet = false);
|
|
void P_InitKeyMessages ();
|
|
int P_GetMapColorForLock (int lock);
|
|
int P_GetMapColorForKey (AActor *key);
|
|
int P_GetKeyTypeCount();
|
|
PClassActor *P_GetKeyType(int num);
|
|
|
|
#endif
|