diff --git a/src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs b/src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs index 4afa36a..68f43a8 100644 --- a/src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs +++ b/src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs @@ -5,6 +5,8 @@ using Godot; namespace GDExtensionBindgen; +#nullable disable + public class PTY { // Engine object used for calling engine methods diff --git a/src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs b/src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs index 74e9c78..0981363 100644 --- a/src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs +++ b/src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs @@ -5,6 +5,8 @@ using Godot; namespace GDExtensionBindgen; +#nullable disable + public class Terminal { // Engine object used for calling engine methods diff --git a/src/SharpIDE.Godot/SharpIDE.Godot.csproj b/src/SharpIDE.Godot/SharpIDE.Godot.csproj index 898a766..0bd31b4 100644 --- a/src/SharpIDE.Godot/SharpIDE.Godot.csproj +++ b/src/SharpIDE.Godot/SharpIDE.Godot.csproj @@ -3,6 +3,7 @@ net9.0 true enable + true