mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
21 lines
340 B
C
21 lines
340 B
C
|
/* $Id$ */
|
||
|
|
||
|
/** @file cheat_func.h Functions related to cheating. */
|
||
|
|
||
|
#ifndef CHEAT_FUNC_H
|
||
|
#define CHEAT_FUNC_H
|
||
|
|
||
|
#include "cheat_type.h"
|
||
|
|
||
|
extern Cheats _cheats;
|
||
|
|
||
|
void ShowCheatWindow();
|
||
|
|
||
|
/**
|
||
|
* Return true if any cheat has been used, false otherwise
|
||
|
* @return has a cheat been used?
|
||
|
*/
|
||
|
bool CheatHasBeenUsed();
|
||
|
|
||
|
#endif /* CHEAT_FUNC_H */
|