23 lines
573 B
C#
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,
|
|
}
|
|
}
|
|
}
|