All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.isaichkindanila.g.net.client.entities.DamageableEntity Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package com.github.isaichkindanila.g.net.client.entities;

import lombok.Getter;
import lombok.ToString;

import java.io.DataInput;
import java.io.IOException;

@Getter
@ToString(callSuper = true)
public abstract class DamageableEntity extends Entity {
    private final int hp;

    public DamageableEntity(DataInput input) throws IOException {
        super(input);
        hp = input.readInt();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy