public ChoiceLevelForm(MapMakerForm mapmakerform)
 {
     InitializeComponent();
     this.mapmakerform = mapmakerform;
     this.FormClosing += delegate(object sender, FormClosingEventArgs e) { mapmakerform.Invalidate(); };
     LoadLocations(mapmakerform.locations);
 }
Example #2
0
        public LevelCreateForm(MapMakerForm mapmakerform)
        {
            InitializeComponent();
            this.mapmakerform = mapmakerform;

            ShowAllLocations(mapmakerform.locations, listBox1);
        }
Example #3
0
 public PanelGameObjectsForm(MapMakerForm mapmakerform)
 {
     InitializeComponent();
     this.mapmakerform = mapmakerform;
     LoadPathesOfPictures(pathes);
 }
 public LocationCreateForm(MapMakerForm mapmakerform)
 {
     InitializeComponent();
     this.mapmakerform = mapmakerform;
 }