(svn r11768) -Codechange: move some terraform related gui stuff from main_gui.cpp to terraform_gui.cpp (and introduce terraform_gui.h). Based on a patch by Roujin.

This commit is contained in:
rubidium
2008-01-06 18:56:43 +00:00
parent f7a293f074
commit aeff6e5761
8 changed files with 375 additions and 361 deletions

15
src/terraform_gui.h Normal file
View File

@@ -0,0 +1,15 @@
/* $Id$ */
/** @file terraform_gui.h GUI stuff related to terraforming. */
#ifndef TERRAFORM_GUI_H
#define TERRAFORM_GUI_H
#include "window_type.h"
void CcTerraform(bool success, TileIndex tile, uint32 p1, uint32 p2);
void ShowTerraformToolbar(Window *link = NULL);
void ShowEditorTerraformToolbar();
#endif /* GUI_H */