From bb03c57df8fa375ca05eb025a4e2528443d78c98 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Wed, 27 Aug 2025 18:38:54 +1000 Subject: [PATCH] disable warnings in generated code --- src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs | 2 ++ src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs | 2 ++ src/SharpIDE.Godot/SharpIDE.Godot.csproj | 1 + 3 files changed, 5 insertions(+) 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