aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/MainMenu
diff options
context:
space:
mode:
authorwilliam341 <[email protected]>2017-06-18 18:21:18 -0700
committerwilliam341 <[email protected]>2017-06-18 18:21:18 -0700
commite7d23cc119a581e49e05ccb46b0e02452aa8678f (patch)
tree7451020f020005f40b9b82212ea2b75c51ddd9e3 /ShiftOS.WinForms/MainMenu
parentd0d42a2785bee57ce74b81f9784cf7ec0e6c2616 (diff)
downloadshiftos_thereturn-e7d23cc119a581e49e05ccb46b0e02452aa8678f.tar.gz
shiftos_thereturn-e7d23cc119a581e49e05ccb46b0e02452aa8678f.tar.bz2
shiftos_thereturn-e7d23cc119a581e49e05ccb46b0e02452aa8678f.zip
shiftoes easter egg
Diffstat (limited to 'ShiftOS.WinForms/MainMenu')
-rw-r--r--ShiftOS.WinForms/MainMenu/MainMenu.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/MainMenu/MainMenu.cs b/ShiftOS.WinForms/MainMenu/MainMenu.cs
index f6bc833..043de0f 100644
--- a/ShiftOS.WinForms/MainMenu/MainMenu.cs
+++ b/ShiftOS.WinForms/MainMenu/MainMenu.cs
@@ -110,6 +110,14 @@ namespace ShiftOS.WinForms.MainMenu
currentMenu = flmenu;
CategoryText = Localization.Parse("{MAINMENU_TITLE}");
+ //ShiftOeS easter egg
+ Random rnd = new Random();
+ int RandomNum = rnd.Next(1,100);
+ if (RandomNum == 42) //if we find the answer to life, universe and everything than set the logo to shiftoes
+ {
+ shiftos.Image = Properties.Resources.shiftoes;
+ }
+
}
private Random rnd = new Random();