cleaned up all the code and updated
This commit is contained in:
12
Blocks.cs
12
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user