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

Conflicts:
	inf3.csproj
This commit is contained in:
2014-05-12 18:28:13 +02:00
5 changed files with 44 additions and 6 deletions

View File

@@ -16,6 +16,8 @@ namespace WorldOfPeacecraft
private ChatPanel ChatPanel;
private OnlinePlayerList OnlinePlayerList;
private Music m = new Music();
public Gui ()
{
//AllocConsole();
@@ -62,6 +64,8 @@ namespace WorldOfPeacecraft
this.Controls.Add (ChatPanel);
this.ResumeLayout();
m.Playmusic ("overworld");
}
protected override void OnClosing (System.ComponentModel.CancelEventArgs e)

View File

@@ -9,11 +9,12 @@ namespace WorldOfPeacecraft
{
private string ImagesFolder = "textures/";
private Image Logo;
private Music m = new Music();
public SplashScreen ()
{
Logo = Image.FromFile (ImagesFolder + "splashscreen.png");
//TODO: Play "splashscreen.ogg"
m.Playmusic ("splashscreen");
}
protected override void OnPaint (PaintEventArgs e)