~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/cheat_func.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: cheat_func.h 12757 2008-04-17 21:21:01Z rubidium $ */
 
2
 
 
3
/** @file cheat_func.h Functions related to cheating. */
 
4
 
 
5
#ifndef CHEAT_FUNC_H
 
6
#define CHEAT_FUNC_H
 
7
 
 
8
#include "cheat_type.h"
 
9
 
 
10
extern Cheats _cheats;
 
11
 
 
12
void ShowCheatWindow();
 
13
 
 
14
/**
 
15
 * Return true if any cheat has been used, false otherwise
 
16
 * @return has a cheat been used?
 
17
 */
 
18
bool CheatHasBeenUsed();
 
19
 
 
20
#endif /* CHEAT_FUNC_H */