25 lines
536 B
C#
25 lines
536 B
C#
|
||
//////////////////////////////////////////////////////////////////////////
|
||
//
|
||
// 文件:Assets/Editor/GMTools/GMTools.cs
|
||
// 作者:Xoen Xie
|
||
// 时间:2023/08/09
|
||
// 描述:GM tools
|
||
// 说明:
|
||
//
|
||
//////////////////////////////////////////////////////////////////////////
|
||
using UnityEditor;
|
||
using UnityEngine;
|
||
using System.IO;
|
||
using System;
|
||
|
||
public static class GMTools
|
||
{
|
||
[MenuItem("Tools/GM 工具", false, (int)NLDMenuID.GMTools)]
|
||
public static void ConfigExport()
|
||
{
|
||
GMWindow.ShowWindow();
|
||
}
|
||
|
||
|
||
} |