16 lines
331 B
C#
16 lines
331 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 ParameterDeclaration
|
|
{
|
|
public string GetParameterName();
|
|
public string GetParameterType();
|
|
public string GetParameterValue();
|
|
} |