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 - named - net/minecraft/client/texture/SpriteDimensions- intermediary - net/minecraft/class_7771- official - hme- named - width- intermediary - comp_1049- official - a- named - height- intermediary - comp_1050- official - b
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.
- 
Field Details
- 
Constructor Details- 
SpriteDimensionspublic SpriteDimensions(int int2, int int3) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
widthpublic int width()Returns the value of thewidthrecord component.- Returns:
- the value of the widthrecord component
 
- 
heightpublic int height()Returns the value of theheightrecord component.- Returns:
- the value of the heightrecord component
 
 
-