Merge branch 'master' of manuel-voegele.de:inf3

This commit is contained in:
Daniel Herrmann
2014-05-15 13:25:26 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -41,6 +41,12 @@ namespace WorldOfPeacecraft
return Coord.X;
}
public void SetPos (int x, int y)
{
SetX (x);
SetY (y);
}
public void SetY (int y)
{
this.Coord.Y = y;

View File

@@ -72,11 +72,10 @@ namespace WorldOfPeacecraft
this.Controls.Add (OnlinePlayerList);
this.Controls.Add (MapPanel);
this.Controls.Add (ChatPanel);
this.CenterToScreen ();
this.ResumeLayout();
loaded = true;
this.PerformRefresh();
this.CenterToScreen ();
//m.Playmusic ("overworld");
}