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

9 lines
178 B
C#
Raw Normal View History

2026-03-20 13:31:31 +00:00
using System.Collections.Generic;
namespace Rokojori;
public abstract class ParserPhase
{
public abstract void Process( Parser parser );
public bool hasStopError = false;
}