NLDClient-yudde/ProjectNLD/Assets/Editor/GMTools/GMTools.cs

25 lines
536 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//////////////////////////////////////////////////////////////////////////
//
// 文件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();
}
}