rokojori_action_library/Runtime/Text/Parsing/AST/NamespaceDeclaration.cs

14 lines
254 B
C#
Raw Normal View History

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;
namespace Rokojori;
public interface NamespaceDeclaration
{
public string GetNamespace();
}