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

io.github.landuo.l4d2.entity.Player Maven / Gradle / Ivy

package io.github.landuo.l4d2.entity;

import lombok.Data;

/**
 * @author accidia
 */
@Data
public class Player {
    /**
     * Index of player chunk starting from 0.
     */
    private Integer index;
    /**
     * Name of the player.
     */
    private String name;
    /**
     * Player's score (usually "frags" or "kills".)
     */
    private Long score;
    /**
     * Time (in seconds) player has been connected to the server.
     */
    private String duration;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy