Archived
0

Interfaces implementations

This commit is contained in:
Forwolk
2018-08-02 09:25:47 +03:00
parent f55c9bfb33
commit ef383b6e13
2 changed files with 37 additions and 0 deletions

View File

@@ -4,12 +4,14 @@
*/
package mc.world.flat;
import com.flowpowered.nbt.Tag;
import lombok.Getter;
import lombok.Setter;
import mc.core.Location;
import mc.core.world.*;
import java.util.UUID;
import java.util.stream.Stream;
public class FlatWorld implements World {
@@ -50,4 +52,19 @@ public class FlatWorld implements World {
public int getSeed() {
return 0;
}
@Override
public Tag<?> getTag(String name) {
throw new UnsupportedOperationException();
}
@Override
public void setTag(Tag<?> tag) {
throw new UnsupportedOperationException();
}
@Override
public Stream<Tag<?>> tagStream() {
throw new UnsupportedOperationException();
}
}