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