diff --git a/BlockData.cs b/BlockData.cs index 13ac6f0..14109aa 100644 --- a/BlockData.cs +++ b/BlockData.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Voxel +namespace Voxel { public class BlockData { diff --git a/Blocks.cs b/Blocks.cs index 842ea11..f6dbfac 100644 --- a/Blocks.cs +++ b/Blocks.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Voxel +namespace Voxel { public enum Blocks : byte { @@ -12,7 +6,7 @@ namespace Voxel Stone = 1, } - public enum Orientation: uint + public enum Orientation : uint { West = 0, // + X East = 1, // - X @@ -22,7 +16,7 @@ namespace Voxel South = 5, // - Z } - public enum Texture: uint + public enum Texture : uint { Stone = 1 } diff --git a/Camera.cs b/Camera.cs index 91efbb2..b6613f4 100644 --- a/Camera.cs +++ b/Camera.cs @@ -1,5 +1,4 @@ using OpenTK.Mathematics; -using System.Security.Cryptography; namespace Voxel { diff --git a/Chunk.cs b/Chunk.cs index 230b141..ca7d4d9 100644 --- a/Chunk.cs +++ b/Chunk.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Voxel +namespace Voxel { public class Chunk { diff --git a/ChunkMesh.cs b/ChunkMesh.cs index a16e930..21eafcf 100644 --- a/ChunkMesh.cs +++ b/ChunkMesh.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Voxel +namespace Voxel { public class ChunkMesh { @@ -17,7 +11,7 @@ namespace Voxel private void MeshBlock(int i) { - + } } } diff --git a/ChunkMesher.cs b/ChunkMesher.cs index 7548ed7..51f9e31 100644 --- a/ChunkMesher.cs +++ b/ChunkMesher.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Voxel +namespace Voxel { static class ChunkMesher { diff --git a/FaceData.cs b/FaceData.cs index f3751d0..30420e5 100644 --- a/FaceData.cs +++ b/FaceData.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; +using System.Runtime.InteropServices; namespace Voxel { diff --git a/Input.cs b/Input.cs index ff90b6e..68640c4 100644 --- a/Input.cs +++ b/Input.cs @@ -1,9 +1,4 @@ using OpenTK.Windowing.GraphicsLibraryFramework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Voxel { diff --git a/Renderer.cs b/Renderer.cs index 3a21304..814bbb5 100644 --- a/Renderer.cs +++ b/Renderer.cs @@ -1,10 +1,4 @@ using OpenTK.Graphics.OpenGL4; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; namespace Voxel { diff --git a/Shader.cs b/Shader.cs index faeab63..2f32279 100644 --- a/Shader.cs +++ b/Shader.cs @@ -1,11 +1,5 @@ using OpenTK.Graphics.OpenGL4; using OpenTK.Mathematics; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Reflection.Metadata; -using System.Text; -using System.Threading.Tasks; namespace Voxel { diff --git a/Triangle.cs b/Triangle.cs index 8227ed5..ab9db2c 100644 --- a/Triangle.cs +++ b/Triangle.cs @@ -1,9 +1,4 @@ using OpenTK.Graphics.OpenGL4; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Voxel {