Skip to content

Commit

Permalink
Move WindowConstants to correct namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahStolk committed Sep 4, 2024
1 parent ba5f89b commit 1fc1002
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/ImGuiGlfw.Sample/Container.cs
Original file line number Diff line number Diff line change
@@ -1,6 1,7 @@
using ImGuiGlfw.Sample.Extensions;
using ImGuiGlfw.Sample.Services;
using ImGuiGlfw.Sample.Services.Ui;
using ImGuiGlfw.Sample.Utils;
using Silk.NET.GLFW;
using Silk.NET.OpenGL;
using StrongInject;
Expand Down
3 changes: 2 additions & 1 deletion src/ImGuiGlfw.Sample/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 2,6 @@
using ImGuiGlfw.Sample.Services;
using StrongInject;

using Owned<App> app = new Container().Resolve();
using Container container = new();
using Owned<App> app = container.Resolve();
app.Value.Run();
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
namespace ImGuiGlfw.Sample.Services;
namespace ImGuiGlfw.Sample.Utils;

public static class WindowConstants
{
Expand Down

0 comments on commit 1fc1002

Please sign in to comment.