mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-03 17:32:54 +00:00
3f90764faa
a_pickups only contains a few native remains of the inventory code and the other two only the static data maintenance for their items.
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
|