diff options
| author | AShifter <[email protected]> | 2017-04-28 11:46:23 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-28 11:46:23 -0700 |
| commit | 0ffdb500015baaad3a663965d00de8f44a25a235 (patch) | |
| tree | b23be2020077d611971094f112e42d1d0283d392 /TimeHACK.Engine/WindowManager.cs | |
| parent | 92f9ee00b94c0a6af901a1ce4017541246517973 (diff) | |
| parent | a2e3f6358a2c7c25d5366bec4f75138ed3413305 (diff) | |
| download | histacom2-0ffdb500015baaad3a663965d00de8f44a25a235.tar.gz histacom2-0ffdb500015baaad3a663965d00de8f44a25a235.tar.bz2 histacom2-0ffdb500015baaad3a663965d00de8f44a25a235.zip | |
Merge pull request #52 from lempamo/master
Master
Diffstat (limited to 'TimeHACK.Engine/WindowManager.cs')
| -rw-r--r-- | TimeHACK.Engine/WindowManager.cs | 3 |
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); } |
