godot/modules/mono/glue/GodotSharp/GodotSharp/Core/Attributes/GlobalAttribute.cs
2021-11-06 22:43:27 -05:00

18 lines
359 B
C#

using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Class)]
public class GlobalAttribute : Attribute
{
private string name;
private string iconPath;
public GlobalAttribute(string name = "", string iconPath = "")
{
this.name = name;
this.iconPath = iconPath;
}
}
}