diff options
Diffstat (limited to 'Thronefall_v1.0/Decompile/DemoQuitSwitch.cs')
-rw-r--r-- | Thronefall_v1.0/Decompile/DemoQuitSwitch.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Thronefall_v1.0/Decompile/DemoQuitSwitch.cs b/Thronefall_v1.0/Decompile/DemoQuitSwitch.cs new file mode 100644 index 0000000..5f1f586 --- /dev/null +++ b/Thronefall_v1.0/Decompile/DemoQuitSwitch.cs @@ -0,0 +1,11 @@ +using UnityEngine; + +public class DemoQuitSwitch : MonoBehaviour +{ + public UIFrame demoFrame; + + public void Trigger() + { + UIFrameManager.instance.QuitToDesktop(); + } +} |