summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/GodotMethodAttribute.cs
blob: 21333c8dab0985587c4f8ecbf417ab7e25235d66 (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, Inherited = true)]
    internal class GodotMethodAttribute : Attribute
    {
        private string methodName;

        public string MethodName { get { return methodName; } }

        public GodotMethodAttribute(string methodName)
        {
            this.methodName = methodName;
        }
    }
}