2026-03-20 13:31:31 +00:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using Godot;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2026-03-20 13:31:31 +00:00
|
|
|
namespace Rokojori;
|
|
|
|
|
|
|
|
|
|
public interface ASTFileRoot
|
|
|
|
|
{
|
|
|
|
|
public string GetFilePath();
|
|
|
|
|
public string GetSource();
|
|
|
|
|
public TextLinesMapper GetTextLinesMapper();
|
|
|
|
|
public Parser GetParser();
|
|
|
|
|
|
|
|
|
|
}
|