1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

C#: Rename Object to GodotObject

This commit is contained in:
Raul Santos
2022-12-07 16:16:51 +01:00
parent a968e51414
commit 1aceacaa6b
38 changed files with 147 additions and 145 deletions

View File

@@ -2,19 +2,19 @@
namespace Godot.SourceGenerators.Sample
{
partial class Generic<T> : Godot.Object
partial class Generic<T> : GodotObject
{
private int _field;
}
// Generic again but different generic parameters
partial class Generic<T, R> : Godot.Object
partial class Generic<T, R> : GodotObject
{
private int _field;
}
// Generic again but without generic parameters
partial class Generic : Godot.Object
partial class Generic : GodotObject
{
private int _field;
}