diff options
| author | william341 <[email protected]> | 2016-07-23 16:20:23 -0700 |
|---|---|---|
| committer | william341 <[email protected]> | 2016-07-23 16:20:23 -0700 |
| commit | 1a95b347a23fbbabab10ee984b2621089dc93135 (patch) | |
| tree | 84b767063bc369d6979ffee22a59a3d152494be3 /source/WindowsFormsApplication1/Apps/Terminal.cs | |
| parent | 4e630d1ab9f7c241bfd659b3a7cbe4c1f65dc021 (diff) | |
| download | shiftos-c--1a95b347a23fbbabab10ee984b2621089dc93135.tar.gz shiftos-c--1a95b347a23fbbabab10ee984b2621089dc93135.tar.bz2 shiftos-c--1a95b347a23fbbabab10ee984b2621089dc93135.zip | |
Re Implemented Cheats
Diffstat (limited to 'source/WindowsFormsApplication1/Apps/Terminal.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/Apps/Terminal.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source/WindowsFormsApplication1/Apps/Terminal.cs b/source/WindowsFormsApplication1/Apps/Terminal.cs index 93f6a13..f34bdc6 100644 --- a/source/WindowsFormsApplication1/Apps/Terminal.cs +++ b/source/WindowsFormsApplication1/Apps/Terminal.cs @@ -1508,6 +1508,22 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o } } + public void cmd_cheat(String[] args) + { + if (API.DeveloperMode) + { + WriteLine("Opening..."); + + //Apps.Cheats chts = new Apps.Cheats(); + //chts.Show(); + API.CreateForm(new Apps.Cheats(), "Cheats", API.GetIcon("Terminal")); + } + else + { + wrongcommand(); + } + } + public void cmd_debug(String[] args) { if (API.DeveloperMode == true) |
