14 lines
395 B
C#
14 lines
395 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
|
|
public class ETrcrmMenus
|
|
{
|
|
|
|
[MenuItem("Assets/Create/Lua Script/New Class Lua Panel", false, 81)]
|
|
public static void CreatNewLuaPanel()
|
|
{
|
|
ECLCreateFile.PubCreatNewFile("Assets/trCRM/Templates/Lua/NewClassLuaPanel.lua", ECLCreateFile.GetSelectedPathOrFallback() + "/NewLuaPanel.lua");
|
|
}
|
|
}
|