Package net.minecraft.client.texture
Record Class SpriteDimensions
java.lang.Object
java.lang.Record
net.minecraft.client.texture.SpriteDimensions
- Record Components:
width
-height
-
- Mappings:
Namespace Name official gfz
intermediary net/minecraft/class_7771
named net/minecraft/client/texture/SpriteDimensions
official a
intermediary comp_1049
named width
official b
intermediary comp_1050
named height
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.final String
toString()
Returns a string representation of this record class.int
width()
Returns the value of thewidth
record component.
-
Field Details
-
Constructor Details
-
SpriteDimensions
public SpriteDimensions(int int2, int int3)
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
width
public int width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-