public Cube(Vector3 size, Vector3 position, GraphicsDevice device) { Size = size; Position = position; create(device); for (int i = 0; i < 6; i++) blockAreas[i] = new BlockArea(device); }
public Cube(Vector3 size, Vector3 position, GraphicsDevice device) { Size = size; Position = position; create(device); for (int i = 0; i < 6; i++) { blockAreas[i] = new BlockArea(device); } }