MenuFPS.cs 319 B

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