You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
944 B
Java
40 lines
944 B
Java
package net.minecraft.util;
|
|
|
|
public class TupleIntJsonSerializable
|
|
{
|
|
private int integerValue;
|
|
private IJsonSerializable jsonSerializableValue;
|
|
private static final String __OBFID = "CL_00001478";
|
|
|
|
/**
|
|
* Gets the integer value stored in this tuple.
|
|
*/
|
|
public int getIntegerValue()
|
|
{
|
|
return this.integerValue;
|
|
}
|
|
|
|
/**
|
|
* Sets this tuple's integer value to the given value.
|
|
*/
|
|
public void setIntegerValue(int p_151188_1_)
|
|
{
|
|
this.integerValue = p_151188_1_;
|
|
}
|
|
|
|
/**
|
|
* Gets the JsonSerializable value stored in this tuple.
|
|
*/
|
|
public IJsonSerializable getJsonSerializableValue()
|
|
{
|
|
return this.jsonSerializableValue;
|
|
}
|
|
|
|
/**
|
|
* Sets this tuple's JsonSerializable value to the given value.
|
|
*/
|
|
public void setJsonSerializableValue(IJsonSerializable p_151190_1_)
|
|
{
|
|
this.jsonSerializableValue = p_151190_1_;
|
|
}
|
|
} |