aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/WindowManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'TimeHACK.Engine/WindowManager.cs')
-rw-r--r--TimeHACK.Engine/WindowManager.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs
index 7a45011..0ba5d99 100644
--- a/TimeHACK.Engine/WindowManager.cs
+++ b/TimeHACK.Engine/WindowManager.cs
@@ -2,6 +2,7 @@
using System.Windows.Forms;
using System.Drawing;
using TimeHACK.Engine.Template;
+using System.Media;
namespace TimeHACK.Engine
{
@@ -63,6 +64,8 @@ namespace TimeHACK.Engine
{
Infobox95 app = new Infobox95();
app.infoText.Text = text;
+ SoundPlayer sp = new SoundPlayer(Properties.Resources.CHORD);
+ sp.Play();
return startWin95(app, title, null, false, false);
}