summaryrefslogtreecommitdiff
path: root/ZooBOTanica
diff options
context:
space:
mode:
authorTrueKuehli <rctcoaster2000@hotmail.de>2018-09-30 16:26:42 +0200
committerTrueKuehli <rctcoaster2000@hotmail.de>2018-09-30 16:26:42 +0200
commitf3de85c77706e33b5072dd4b491ff76fdfebccd6 (patch)
treecc024e9a1b8ea081504fbd183fc48edf0ce3b875 /ZooBOTanica
parent3a67ec1e4530f6b413228c2dc19dd90977ac381c (diff)
parent560f454c9beb2f691730b126fc6b3e23d68d6681 (diff)
Merge branch 'WebApi' of https://github.com/TrueDoctor/DiscoBot into WebApi
Diffstat (limited to 'ZooBOTanica')
-rw-r--r--ZooBOTanica/CritCreate.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/ZooBOTanica/CritCreate.cs b/ZooBOTanica/CritCreate.cs
index 08a6ff0..08f527d 100644
--- a/ZooBOTanica/CritCreate.cs
+++ b/ZooBOTanica/CritCreate.cs
@@ -15,7 +15,7 @@ namespace ZooBOTanica
public partial class CritCreateForm : Form
{
- private DSALib.Characters.Critter critter;
+ public DSALib.Characters.Critter critter;
public CritCreateForm()
{
@@ -23,7 +23,7 @@ namespace ZooBOTanica
this.AllowDrop = true;
}
- private new void Load(string path)
+ public new void Load(string path)
{
this.critter = Critter.Load(path);
@@ -48,12 +48,12 @@ namespace ZooBOTanica
}
}
- private void CritCreateForm_DragDrop(object sender, DragEventArgs e)
+ public void CritCreateForm_DragDrop(object sender, DragEventArgs e)
{
this.Load(e.Data.GetData(DataFormats.Text).ToString());
}
- private void LoadButton_Click(object sender, EventArgs e)
+ public void LoadButton_Click(object sender, EventArgs e)
{
var dig = new OpenFileDialog();
dig.CheckFileExists = true;
@@ -67,7 +67,7 @@ namespace ZooBOTanica
}
}
- private void SaveButton_Click(object sender, EventArgs e)
+ public void SaveButton_Click(object sender, EventArgs e)
{
this.critter = new Critter();
this.critter.Astralpunkte_Basis = (int)this.AeEdit.Value;