mirror of
https://github.com/godotengine/godot.git
synced 2025-01-12 20:22:49 +08:00
18 lines
363 B
C#
18 lines
363 B
C#
using System;
|
|
|
|
namespace Godot
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
internal class GodotMethodAttribute : Attribute
|
|
{
|
|
private string methodName;
|
|
|
|
public string MethodName { get { return methodName; } }
|
|
|
|
public GodotMethodAttribute(string methodName)
|
|
{
|
|
this.methodName = methodName;
|
|
}
|
|
}
|
|
}
|