godot/modules/mono/glue/Managed/Files/Attributes/GodotMethodAttribute.cs
Ignacio Etcheverry 995a40e8ef Move modules/mono/glue/cs_files to modules/mono/glue/Managed/Files
Added dummy MSBuild project and solution to get tooling help when editing these files.
2018-09-12 22:03:36 +02:00

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