Files
Cielonos/Assets/Plugins/AllIn13DShader/Editor/CustomEditors/EffectsProfileCollectionCustomEditor.cs

13 lines
217 B
C#
Raw Normal View History

2026-01-12 03:22:16 -05:00
using UnityEditor;
namespace AllIn13DShader
{
[CustomEditor(typeof(EffectsProfileCollection))]
public class EffectsProfileCollectionCustomEditor : Editor
{
public override void OnInspectorGUI()
{
}
}
}