diff options
| author | lempamo <[email protected]> | 2017-07-30 00:10:22 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-30 00:10:22 -0400 |
| commit | 077fef3baf82e23a4a03bb3c73d83f8d8103fdb9 (patch) | |
| tree | 7136fb69ca87b175aee39e6a04b4e998905f22a0 /TimeHACK.Engine/Theme.cs | |
| parent | 71ccea956dc85e8b293dc8a30fbbf91b2709897f (diff) | |
| download | histacom2-077fef3baf82e23a4a03bb3c73d83f8d8103fdb9.tar.gz histacom2-077fef3baf82e23a4a03bb3c73d83f8d8103fdb9.tar.bz2 histacom2-077fef3baf82e23a4a03bb3c73d83f8d8103fdb9.zip | |
better infoboxes
Diffstat (limited to 'TimeHACK.Engine/Theme.cs')
| -rw-r--r-- | TimeHACK.Engine/Theme.cs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/TimeHACK.Engine/Theme.cs b/TimeHACK.Engine/Theme.cs index 2b22072..8e75756 100644 --- a/TimeHACK.Engine/Theme.cs +++ b/TimeHACK.Engine/Theme.cs @@ -15,6 +15,7 @@ namespace TimeHACK.Engine public Stream asteriskSound { get; set; } public Stream critStopSound { get; set; } + public Stream exclamationSound { get; set; } public Stream progErrorSound { get; set; } public Stream questionSound { get; set; } @@ -32,6 +33,7 @@ namespace TimeHACK.Engine asteriskSound = Properties.Resources.CHORD; critStopSound = Properties.Resources.CHORD; + exclamationSound = Properties.Resources.CHORD; progErrorSound = Properties.Resources.CHORD; questionSound = Properties.Resources.CHORD; @@ -44,11 +46,12 @@ namespace TimeHACK.Engine { public Default98Theme() { - startSound = Properties.Resources.Win95Start; - stopSound = Properties.Resources.Win95Stop; + startSound = Properties.Resources.Win98Start; + stopSound = Properties.Resources.Win98Stop; asteriskSound = Properties.Resources.CHORD; critStopSound = Properties.Resources.CHORD; + exclamationSound = Properties.Resources.CHORD; progErrorSound = Properties.Resources.CHORD; questionSound = Properties.Resources.CHORD; @@ -64,6 +67,12 @@ namespace TimeHACK.Engine startSound = Properties.Resources.Win95PlusDangerousCreaturesStart; stopSound = Properties.Resources.Win95PlusDangerousCreaturesStart; + asteriskSound = Properties.Resources.Win95PlusDangerousCreaturesAsterisk; + critStopSound = Properties.Resources.Win95PlusDangerousCreaturesCritStop; + exclamationSound = Properties.Resources.Win95PlusDangerousCreaturesExclamation; + progErrorSound = Properties.Resources.Win95PlusDangerousCreaturesProgError; + questionSound = Properties.Resources.Win95PlusDangerousCreaturesQuestion; + defaultWallpaper = Properties.Resources.Win95PlusDangerousCreaturesWallpaper; themeName = "dangeranimals"; } |
