mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-12-24 01:17:41 +01:00
The rest of the double NBT.
This commit is contained in:
parent
db9ab57437
commit
204aa22acc
@ -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