16 lines
312 B
C#
16 lines
312 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 MemberDeclaration
|
|
{
|
|
public string GetMemberName();
|
|
public string GetMemberType();
|
|
} |