This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Last-Ember/Scripts/User Interface/Menus/MainMenuOptions/Quit.cs
T
2019-03-08 09:54:14 +11:00

12 lines
228 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MenuSystem {
class Quit : MenuOption {
override public void Execute() {
Application.Quit();
Debug.Log("Quit called");
}
}
}