aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/Theme.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-07-08 16:04:01 +0100
committerAlex-TIMEHACK <[email protected]>2017-07-08 16:04:01 +0100
commita52f16bf447268d26ea30228a5560435381b6e0b (patch)
tree515a2b52b533b0070559f453c660859c1ba2b877 /TimeHACK.Engine/Theme.cs
parentf095f4efd9e2dd217045f65b7b33594b16fb0125 (diff)
parent88711b440b3a55d09118d2c42b1bb8930936eb90 (diff)
downloadhistacom2-a52f16bf447268d26ea30228a5560435381b6e0b.tar.gz
histacom2-a52f16bf447268d26ea30228a5560435381b6e0b.tar.bz2
histacom2-a52f16bf447268d26ea30228a5560435381b6e0b.zip
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Engine/Theme.cs')
-rw-r--r--TimeHACK.Engine/Theme.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/TimeHACK.Engine/Theme.cs b/TimeHACK.Engine/Theme.cs
index cd82fac..89c913d 100644
--- a/TimeHACK.Engine/Theme.cs
+++ b/TimeHACK.Engine/Theme.cs
@@ -45,9 +45,22 @@ namespace TimeHACK.Engine
public DangerousCreaturesTheme()
{
startSound = Properties.Resources.Win95PlusDangerousCreaturesStart;
+ stopSound = Properties.Resources.Win95PlusDangerousCreaturesStart;
defaultWallpaper = Properties.Resources.Win95PlusDangerousCreaturesWallpaper;
themeName = "dangeranimals";
}
}
+
+ public class InsideComputerTheme: Theme
+ {
+ public InsideComputerTheme()
+ {
+ startSound = Properties.Resources.Win95PlusInsideComputerStart;
+ stopSound = Properties.Resources.Win95PlusInsideComputerStop;
+
+ defaultWallpaper = Properties.Resources.Win95PlusInsideComputerWallpaper;
+ themeName = "insidepc";
+ }
+ }
}