mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
11 lines
257 B
C#
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();
|
|
}
|
|
}
|