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

« back to all changes in this revision

Viewing changes to src/genworld.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthijs Kooijman, Matthijs Kooijman
  • Date: 2009-10-01 22:52:59 UTC
  • mfrom: (1.1.8 upstream) (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091001225259-5kpkp4sthbszpyif
[ Matthijs Kooijman ]
* New upstream release
* Use printf instead of echo -en in openttd-wrapper to make it POSIX
  compatible (Closes: #547758).
* Remove three patches that are now included in upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: genworld.h 16247 2009-05-06 22:37:19Z rubidium $ */
 
1
/* $Id: genworld.h 17158 2009-08-12 15:22:50Z rubidium $ */
2
2
 
3
3
/** @file genworld.h Functions related to world/map generation. */
4
4
 
74
74
void GenerateWorldSetCallback(gw_done_proc *proc);
75
75
void GenerateWorldSetAbortCallback(gw_abort_proc *proc);
76
76
void WaitTillGeneratedWorld();
77
 
void GenerateWorld(GenerateWorldMode mode, uint size_x, uint size_y);
 
77
void GenerateWorld(GenerateWorldMode mode, uint size_x, uint size_y, bool reset_settings = true);
78
78
void AbortGeneratingWorld();
79
79
bool IsGeneratingWorldAborted();
80
80
void HandleGeneratingWorldAbortion();