mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-24 02:56:17 +01:00
Merge branch 'development'
This commit is contained in:
commit
270d919306
@ -4,7 +4,7 @@ stages:
|
||||
variables:
|
||||
name: "SongodaCore"
|
||||
path: "/builds/$CI_PROJECT_PATH"
|
||||
version: "2.3.25"
|
||||
version: "2.3.26"
|
||||
|
||||
build:
|
||||
stage: build
|
||||
|
@ -1,7 +1,5 @@
|
||||
package com.songoda.core.nms.nbt;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface NBTObject {
|
||||
|
||||
String asString();
|
||||
@ -10,6 +8,8 @@ public interface NBTObject {
|
||||
|
||||
int asInt();
|
||||
|
||||
double asDouble();
|
||||
|
||||
long asLong();
|
||||
|
||||
short asShort();
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
@ -25,6 +25,10 @@ public class NBTObjectImpl implements NBTObject {
|
||||
return compound.getInt(tag);
|
||||
}
|
||||
|
||||
public double asDouble() {
|
||||
return compound.getDouble(tag);
|
||||
}
|
||||
|
||||
public long asLong() {
|
||||
return compound.getLong(tag);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user