rokojori_action_library/Runtime/Text/Parsing/Parser/ParserPhase.cs

10 lines
205 B
C#

using System.Collections.Generic;
using Rokojori.Extensions;
namespace Rokojori;
public abstract class ParserPhase
{
public abstract void Process( Parser parser );
public bool hasStopError = false;
}