2021-03-06 00:12:42 +01:00
|
|
|
namespace Godot.SourceGenerators
|
|
|
|
{
|
|
|
|
public static class GodotClasses
|
|
|
|
{
|
|
|
|
public const string Object = "Godot.Object";
|
|
|
|
public const string AssemblyHasScriptsAttr = "Godot.AssemblyHasScriptsAttribute";
|
2022-02-27 21:57:30 +01:00
|
|
|
public const string ExportAttr = "Godot.ExportAttribute";
|
2022-08-22 19:23:45 +02:00
|
|
|
public const string ExportCategoryAttr = "Godot.ExportCategoryAttribute";
|
|
|
|
public const string ExportGroupAttr = "Godot.ExportGroupAttribute";
|
|
|
|
public const string ExportSubgroupAttr = "Godot.ExportSubgroupAttribute";
|
2022-07-28 17:41:47 +02:00
|
|
|
public const string SignalAttr = "Godot.SignalAttribute";
|
2022-02-27 21:57:30 +01:00
|
|
|
public const string GodotClassNameAttr = "Godot.GodotClassName";
|
|
|
|
public const string SystemFlagsAttr = "System.FlagsAttribute";
|
2021-03-06 00:12:42 +01:00
|
|
|
}
|
|
|
|
}
|