summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/Files/Attributes/GodotMethodAttribute.cs
blob: 55848769d578131473cdd3426a8368ce0deab61d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
        }
    }
}