remove some unused imports and code

This commit is contained in:
2022-11-22 12:06:50 +01:00
parent ae079c88a3
commit 0ca183c4c4
4 changed files with 9 additions and 18 deletions

View File

@@ -5,14 +5,6 @@ namespace EscapeRoomEngine.Engine.Runtime
{
public struct Dimensions
{
internal Dimensions(int width, int length, int x, int z)
{
this.width = width;
this.length = length;
this.x = x;
this.z = z;
}
public int width;
public int length;
public int x;