MenuRoundButton.cs 351 B

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