2021-03-05 23:12:42 +00:00
|
|
|
namespace Godot.SourceGenerators
|
|
|
|
{
|
|
|
|
public static class GodotClasses
|
|
|
|
{
|
2022-12-07 15:16:51 +00:00
|
|
|
public const string GodotObject = "Godot.GodotObject";
|
2021-03-05 23:12:42 +00:00
|
|
|
public const string AssemblyHasScriptsAttr = "Godot.AssemblyHasScriptsAttribute";
|
2022-02-27 20:57:30 +00:00
|
|
|
public const string ExportAttr = "Godot.ExportAttribute";
|
2022-08-22 17:23:45 +00:00
|
|
|
public const string ExportCategoryAttr = "Godot.ExportCategoryAttribute";
|
|
|
|
public const string ExportGroupAttr = "Godot.ExportGroupAttribute";
|
|
|
|
public const string ExportSubgroupAttr = "Godot.ExportSubgroupAttribute";
|
2022-07-28 15:41:47 +00:00
|
|
|
public const string SignalAttr = "Godot.SignalAttribute";
|
2022-08-15 03:57:52 +00:00
|
|
|
public const string MustBeVariantAttr = "Godot.MustBeVariantAttribute";
|
2022-12-07 15:11:39 +00:00
|
|
|
public const string GodotClassNameAttr = "Godot.GodotClassNameAttribute";
|
2022-02-27 20:57:30 +00:00
|
|
|
public const string SystemFlagsAttr = "System.FlagsAttribute";
|
2021-03-05 23:12:42 +00:00
|
|
|
}
|
|
|
|
}
|