Files
FlowScope/My project/Assets/FlowScope/Runtime/Config/IConfigParser.cs
2026-05-20 15:36:10 +08:00

15 lines
279 B
C#

using System.Collections.Generic;
namespace FlowScope.Config
{
public interface IConfigParser
{
string Format { get; }
IReadOnlyList<T> ParseRows<T>(
string fileName,
string text)
where T : class, IConfigRow;
}
}