19 lines
378 B
C#
19 lines
378 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
using System.Text;
|
|
|
|
using System.Globalization;
|
|
using Godot;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori;
|
|
|
|
public interface ASTFileRoot
|
|
{
|
|
public string GetFilePath();
|
|
public string GetSource();
|
|
public TextLinesMapper GetTextLinesMapper();
|
|
public Parser GetParser();
|
|
|
|
} |