virtualx-engine/modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs
2018-08-23 12:50:04 -04:00

17 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;
}
}
}