MenuSDKSystem.cs 485 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEditor;
  5. namespace SC.Menu {
  6. public class MenuSDKSystem : MenuBase {
  7. [MenuItem("GameObject/SDK/SDKSystem", false, 10)]
  8. public static void createAction() {
  9. CreatePrefab("Prefabs/SDKSystem");
  10. }
  11. [MenuItem("SDK/SDKSystem", false, 10)]
  12. public static void createAction1() {
  13. CreatePrefab("Prefabs/SDKSystem");
  14. }
  15. }
  16. }