2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-02 01:01:54 +00:00
Files
OpenAssetTools/src/ZoneCodeGenerator/Parsing/IParserState.cs

11 lines
257 B
C#

using System.Collections.Generic;
using ZoneCodeGenerator.Parsing.Testing;
namespace ZoneCodeGenerator.Parsing
{
interface IParserState<in TState> where TState : IParserState<TState>
{
IEnumerable<ITokenTest<TState>> GetTests();
}
}