undeprecate Location and Block, will deal with them in separate PRs

This commit is contained in:
dfsek 2021-06-24 00:05:06 -07:00
parent f69fdbe37e
commit c0b55c3e4e
3 changed files with 0 additions and 3 deletions

View File

@ -4,7 +4,6 @@ import com.dfsek.terra.api.vector.Location;
import com.dfsek.terra.api.Handle;
import com.dfsek.terra.api.block.state.BlockState;
@Deprecated
public interface Block extends Handle {
void setBlockData(BlockData data, boolean physics);

View File

@ -3,7 +3,6 @@ package com.dfsek.terra.api.vector;
import com.dfsek.terra.api.block.Block;
import com.dfsek.terra.api.world.World;
@Deprecated
public interface Location extends Cloneable {
void setWorld(World world);

View File

@ -7,7 +7,6 @@ import com.dfsek.terra.api.world.World;
import java.util.Objects;
@Deprecated
public class LocationImpl implements Location {
private World world;
private Vector3 vector;