Record Class ClientboundHurtAnimationPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundHurtAnimationPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundHurtAnimationPacket(int id, float yaw)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
-
Constructor Summary
ConstructorDescriptionClientboundHurtAnimationPacket
(int id, float yaw) Creates an instance of aClientboundHurtAnimationPacket
record class.ClientboundHurtAnimationPacket
(FriendlyByteBuf p_265181_) ClientboundHurtAnimationPacket
(LivingEntity p_265293_) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.void
handle
(ClientGamePacketListener p_265654_) final int
hashCode()
Returns a hash code value for this object.int
id()
Returns the value of theid
record component.final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_265156_) float
yaw()
Returns the value of theyaw
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable
-
Field Details
-
id
private final int idThe field for theid
record component. -
yaw
private final float yawThe field for theyaw
record component.
-
-
Constructor Details
-
ClientboundHurtAnimationPacket
-
ClientboundHurtAnimationPacket
-
ClientboundHurtAnimationPacket
public ClientboundHurtAnimationPacket(int id, float yaw) Creates an instance of aClientboundHurtAnimationPacket
record class.- Parameters:
id
- the value for theid
record componentyaw
- the value for theyaw
record component
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ClientGamePacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ClientGamePacketListener>
-
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 '=='. -
id
public int id()Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
yaw
public float yaw()Returns the value of theyaw
record component.- Returns:
- the value of the
yaw
record component
-