aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/WindowManager.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-28 13:48:46 -0400
committerlempamo <[email protected]>2017-04-28 13:48:46 -0400
commita2e3f6358a2c7c25d5366bec4f75138ed3413305 (patch)
tree7c501e927900385eb21a1f1951d11389e09b996b /TimeHACK.Engine/WindowManager.cs
parentd09495e545fecf9bed7b110115c7c844a8ed0d39 (diff)
downloadhistacom2-a2e3f6358a2c7c25d5366bec4f75138ed3413305.tar.gz
histacom2-a2e3f6358a2c7c25d5366bec4f75138ed3413305.tar.bz2
histacom2-a2e3f6358a2c7c25d5366bec4f75138ed3413305.zip
added CHORD.WAV
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);
}