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

9 lines
178 B
C#

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