mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-14 08:30:50 +00:00
96d328de9b
For some files that had the Doom Source license attached but saw heavy external contributions over the years I added a special note to license all original ZDoom code under BSD.
20 lines
619 B
C++
20 lines
619 B
C++
#ifndef __M_CHEAT_H__
|
|
#define __M_CHEAT_H__
|
|
|
|
//
|
|
// CHEAT SEQUENCE PACKAGE
|
|
//
|
|
|
|
// [RH] Functions that actually perform the cheating
|
|
class player_t;
|
|
class PClassActor;
|
|
|
|
void cht_DoMDK(player_t *player, const char *mod);
|
|
void cht_DoCheat (player_t *player, int cheat);
|
|
void cht_Give (player_t *player, const char *item, int amount=1);
|
|
void cht_Take (player_t *player, const char *item, int amount=1);
|
|
void cht_SetInv(player_t *player, const char *item, int amount = 1, bool beyondMax = false);
|
|
void cht_Suicide (player_t *player);
|
|
const char *cht_Morph (player_t *player, PClassActor *morphclass, bool quickundo);
|
|
|
|
#endif
|