mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 21:41:07 +00:00
24 lines
451 B
C
24 lines
451 B
C
|
#ifndef A_KEYS_H
|
||
|
#define A_KEYS_H
|
||
|
|
||
|
#include "a_pickups.h"
|
||
|
|
||
|
class AKey : public AInventory
|
||
|
{
|
||
|
DECLARE_STATELESS_ACTOR (AKey, AInventory)
|
||
|
public:
|
||
|
virtual bool HandlePickup (AInventory *item);
|
||
|
|
||
|
BYTE KeyNumber;
|
||
|
|
||
|
protected:
|
||
|
virtual bool ShouldStay ();
|
||
|
};
|
||
|
|
||
|
bool P_CheckKeys (AActor *owner, int keynum, bool remote);
|
||
|
void P_InitKeyMessages ();
|
||
|
int P_GetMapColorForLock (int lock);
|
||
|
int P_GetMapColorForKey (AInventory *key);
|
||
|
|
||
|
#endif
|