aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs
diff options
context:
space:
mode:
authorMichael VanOverbeek <[email protected]>2016-07-22 08:00:32 -0700
committerGitHub <[email protected]>2016-07-22 08:00:32 -0700
commite4951c025d842484ade89b86f66d4140ff240d03 (patch)
tree9839226f202f7da734aa549fd18427747548731e /source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs
parentb9911efba3bc070c4a4995a8cf89163ef1685af6 (diff)
parenta1f8770e879259b4b71589c842e5eeb26a59f2fb (diff)
downloadshiftos-c-_theultimatehacker-e4951c025d842484ade89b86f66d4140ff240d03.tar.gz
shiftos-c-_theultimatehacker-e4951c025d842484ade89b86f66d4140ff240d03.tar.bz2
shiftos-c-_theultimatehacker-e4951c025d842484ade89b86f66d4140ff240d03.zip
Merge pull request #9 from carverh/master
Added A LOT
Diffstat (limited to 'source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs')
-rw-r--r--source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs b/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs
index aea2f82..7d1f12f 100644
--- a/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs
+++ b/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs
@@ -258,7 +258,7 @@ namespace ShiftOS.FinalMission
mguide.ButtonText = "End DevX";
mguide.OnButtonClick = new Action(() =>
{
- //code to run to start uninstall of ShiftOS.
+ StartGoodEnding();
});
objPrompt = "Firewall, check. Primary server, check. Secondary server, CHECK. Telemetry server, CHECK. Now it's time to disable DevX himself. After all, he IS just code.";
break;
@@ -271,5 +271,13 @@ namespace ShiftOS.FinalMission
}
}
#endregion
+
+ public static void StartGoodEnding()
+ {
+ var room = new FakeChatClient();
+ room.OtherCharacters = new List<string>();
+ room.OtherCharacters.Add("TheHiddenHacker");
+ room.Messages.Add("TheHiddenHacker", "After All This Time...");
+ }
}
} \ No newline at end of file