From 1a2ef5a1090bda8f3b9baec09b55518289d1e7cb Mon Sep 17 00:00:00 2001 From: Harrison Date: Thu, 28 May 2020 00:56:45 -0500 Subject: [PATCH] Fixed imports. --- src/SlatedGameToolkit.Framework/Graphics/Window/WindowHandle.cs | 2 +- src/SlatedGameToolkit.Framework/StateSystem/Manager.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SlatedGameToolkit.Framework/Graphics/Window/WindowHandle.cs b/src/SlatedGameToolkit.Framework/Graphics/Window/WindowHandle.cs index 3a88e8b..ed0f2c5 100644 --- a/src/SlatedGameToolkit.Framework/Graphics/Window/WindowHandle.cs +++ b/src/SlatedGameToolkit.Framework/Graphics/Window/WindowHandle.cs @@ -3,7 +3,7 @@ using System.Runtime.InteropServices; using SDL2; using SlatedGameToolkit.Framework.DataTypes; using SlatedGameToolkit.Framework.Exceptions; -using SlatedGameToolkit.Framework.Graphics.OpenGLUtils; +using SlatedGameToolkit.Framework.Graphics.OpenGL; namespace SlatedGameToolkit.Framework.Graphics.Window { diff --git a/src/SlatedGameToolkit.Framework/StateSystem/Manager.cs b/src/SlatedGameToolkit.Framework/StateSystem/Manager.cs index 02b4605..e479279 100644 --- a/src/SlatedGameToolkit.Framework/StateSystem/Manager.cs +++ b/src/SlatedGameToolkit.Framework/StateSystem/Manager.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Threading; using SDL2; using SlatedGameToolkit.Framework.DataTypes; -using SlatedGameToolkit.Framework.Graphics.OpenGLUtils; +using SlatedGameToolkit.Framework.Graphics.OpenGL; using SlatedGameToolkit.Framework.Graphics.Window; using SlatedGameToolkit.Framework.StateSystem.States;