diff --git a/Core/Window.cs b/Core/Window.cs index b035d48..708ee0c 100644 --- a/Core/Window.cs +++ b/Core/Window.cs @@ -1,6 +1,5 @@ using OpenTK.Graphics.OpenGL4; using OpenTK.Windowing.Common; -using OpenTK.Windowing.Common.Input; using OpenTK.Windowing.Desktop; using OpenTK.Windowing.GraphicsLibraryFramework; using Voxel.Graphics; diff --git a/Entities/Entity.cs b/Entities/Entity.cs index b7111de..ee2df7b 100644 --- a/Entities/Entity.cs +++ b/Entities/Entity.cs @@ -1,10 +1,4 @@ using OpenTK.Mathematics; -using System; -using System.Collections.Generic; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Voxel.Core; using Voxel.Physics; diff --git a/Graphics/Renderer.cs b/Graphics/Renderer.cs index 0421d1d..67cc33f 100644 --- a/Graphics/Renderer.cs +++ b/Graphics/Renderer.cs @@ -1,7 +1,5 @@ using OpenTK.Graphics.OpenGL4; -using OpenTK.Mathematics; using Voxel.Core; -using static System.Runtime.InteropServices.JavaScript.JSType; namespace Voxel.Graphics { diff --git a/UI/UIElement.cs b/UI/UIElement.cs index 8b1fa2d..2be6585 100644 --- a/UI/UIElement.cs +++ b/UI/UIElement.cs @@ -1,5 +1,4 @@ -using OpenTK.Mathematics; -using System.Drawing; +// wip public class UIElement { diff --git a/Worldgen/Worldgen.cs b/Worldgen/Worldgen.cs index 1db77cb..5fc9c86 100644 --- a/Worldgen/Worldgen.cs +++ b/Worldgen/Worldgen.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Voxel.Core; +using Voxel.Core; namespace Voxel {