12345678910111213141516 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEditor;
- namespace SC.Menu {
- public class MenuQuitApp : MenuBase {
- [MenuItem("GameObject/SDK/QuitApp", false, 100)]
- public static void createAction() {
- CreatePrefab("Prefabs/Module_QuitApp");
- }
- }
- }
|