MenuQuitApp.cs 338 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEditor;
  5. namespace SC.Menu {
  6. public class MenuQuitApp : MenuBase {
  7. [MenuItem("GameObject/SDK/QuitApp", false, 100)]
  8. public static void createAction() {
  9. CreatePrefab("Prefabs/Module_QuitApp");
  10. }
  11. }
  12. }