Files
Fishing2/Assets/ThirdParty/Rewired/Extras/Glyphs/Scripts/ControllerElementGlyphSelectorOptionsSOBase.cs
2025-05-10 12:49:47 +08:00

12 lines
336 B
C#

// Copyright (c) 2024 Augie R. Maddox, Guavaman Enterprises. All rights reserved.
namespace Rewired.Glyphs {
using System;
[Serializable]
public abstract class ControllerElementGlyphSelectorOptionsSOBase : UnityEngine.ScriptableObject {
public abstract ControllerElementGlyphSelectorOptions options { get; }
}
}