2017-10-02 23:24:00 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Godot
|
|
|
|
{
|
2018-04-08 05:28:24 +02:00
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
2017-10-02 23:24:00 +02:00
|
|
|
internal class GodotMethodAttribute : Attribute
|
|
|
|
{
|
|
|
|
private string methodName;
|
|
|
|
|
|
|
|
public string MethodName { get { return methodName; } }
|
|
|
|
|
|
|
|
public GodotMethodAttribute(string methodName)
|
|
|
|
{
|
|
|
|
this.methodName = methodName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|