src/cheat_func.h
author skidd13
Mon, 16 Jun 2008 17:05:17 +0000
changeset 10979 13c4100d8757
parent 10225 8becb17444a7
permissions -rw-r--r--
(svn r13533) -Codechange: Replace direct class member access of GUIList with the appropriate function calls
/* $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 */