~ubuntu-branches/ubuntu/maverick/lordsawar/maverick

« back to all changes in this revision

Viewing changes to src/editor/players-dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2010-04-10 09:29:33 UTC
  • mfrom: (1.1.9 upstream) (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100410092933-23uq4dxig30kmtcw
Tags: 0.1.8-1
* New upstream release.
* Add misc:Depends for -data package.
* Bump Standards Version to 3.8.4. (No changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <gtkmm.h>
26
26
 
27
27
class Player;
 
28
class CreateScenarioRandomize;
28
29
 
29
30
//! Scenario editor.  Edit Player objects in the scenario.
30
31
class PlayersDialog
31
32
{
32
33
 public:
33
 
    PlayersDialog(int width, int height);
 
34
    PlayersDialog(CreateScenarioRandomize *randomizer, int width, int height);
34
35
    ~PlayersDialog();
35
36
 
36
37
    void set_parent_window(Gtk::Window &parent);
37
38
 
38
 
    void run();
 
39
    int run();
39
40
    
40
41
 private:
41
42
    Gtk::Dialog* dialog;