virtualx-engine/modules/mono/glue/cs_files/GodotMethodAttribute.cs

18 lines
381 B
C#
Raw Normal View History

2017-10-02 23:24:00 +02:00
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;
}
}
}