summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/DemoQuitSwitch.cs
blob: 5f1f5860bae8c7318d706e8af4a7fbce471f47ec (plain)
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;

public class DemoQuitSwitch : MonoBehaviour
{
	public UIFrame demoFrame;

	public void Trigger()
	{
		UIFrameManager.instance.QuitToDesktop();
	}
}