ResourceLoaderPackage/Packages/com.bywaystudios.resourceloader/Editor/ResourceEditor/ResourceEditor.MenuState.cs
2025-12-28 23:11:56 +08:00

23 lines
573 B
C#

//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
using UnityEditor;
namespace UnityGameFramework.Editor.ResourceTools
{
internal sealed partial class ResourceEditor : EditorWindow
{
private enum MenuState : byte
{
Normal,
Add,
Rename,
Remove,
}
}
}