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

21 lines
544 B
C#

// Copyright (c) 2024 Augie R. Maddox, Guavaman Enterprises. All rights reserved.
#pragma warning disable 0649
namespace Rewired.Glyphs {
using System;
[Serializable]
public class ControllerElementGlyphSelectorOptionsSO : ControllerElementGlyphSelectorOptionsSOBase {
[UnityEngine.SerializeField]
private ControllerElementGlyphSelectorOptions _options;
public override ControllerElementGlyphSelectorOptions options {
get {
return _options;
}
}
}
}