Files
FlowScope/Packages/com.flowscope.gamecore/Runtime/Config/IConfigParser.cs
2026-06-04 14:54:49 +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;
}
}