Files
tianrunCRM/Assets/trCRM/Editor/ETrcrmMenus.cs
2020-07-04 14:41:25 +08:00

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");
}
}