godot/modules/mono/glue/cs_files/GodotMethodAttribute.cs
Ignacio Etcheverry e36fb95c50 Added mono module
2017-10-03 00:01:26 +02:00

18 lines
381 B
C#

using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Method, Inherited = true)]
internal class GodotMethodAttribute : Attribute
{
private string methodName;
public string MethodName { get { return methodName; } }
public GodotMethodAttribute(string methodName)
{
this.methodName = methodName;
}
}
}