14 lines
244 B
C#
14 lines
244 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 ResolvableASTNode
|
||
|
|
{
|
||
|
|
public void Resolve();
|
||
|
|
}
|