From 0ce4c37f5d57e9147a5dd47aefc8f751bb021293 Mon Sep 17 00:00:00 2001 From: Marco van den Oever Date: Sun, 2 Dec 2018 20:24:07 +0100 Subject: [PATCH] Updated to MonoGame 3.7 (#87) --- .../ImGui.NET.SampleProgram.XNA.csproj | 2 +- src/ImGui.NET.SampleProgram.XNA/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImGui.NET.SampleProgram.XNA/ImGui.NET.SampleProgram.XNA.csproj b/src/ImGui.NET.SampleProgram.XNA/ImGui.NET.SampleProgram.XNA.csproj index d360c32..03b2d45 100644 --- a/src/ImGui.NET.SampleProgram.XNA/ImGui.NET.SampleProgram.XNA.csproj +++ b/src/ImGui.NET.SampleProgram.XNA/ImGui.NET.SampleProgram.XNA.csproj @@ -20,7 +20,7 @@ - + diff --git a/src/ImGui.NET.SampleProgram.XNA/Program.cs b/src/ImGui.NET.SampleProgram.XNA/Program.cs index 4e1aeee..9c5b37f 100644 --- a/src/ImGui.NET.SampleProgram.XNA/Program.cs +++ b/src/ImGui.NET.SampleProgram.XNA/Program.cs @@ -4,7 +4,7 @@ { public static void Main(string[] args) { - new SampleGame().Run(); + using (var game = new SampleGame()) game.Run(); } } } \ No newline at end of file