Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/SRDebugger/Services/IOptionsService.cs
2026-02-21 16:45:37 +08:00

13 lines
211 B
C#

using System.Collections.Generic;
using SRDebugger.Internal;
namespace SRDebugger.Services
{
public interface IOptionsService
{
ICollection<OptionDefinition> Options { get; }
void Scan(object obj);
}
}