Interface GivedKit
public interface GivedKit
-
Method Summary
Modifier and TypeMethodDescriptionintHow many times a kit has been given to a player.longThe time when the kit was last given to the player.voidsetGivedCount(int value) Set how many times a kit has been given to a player.voidsetLastGivedTime(long value) Set the time of the last time a kit was given to a player.
-
Method Details
-
getLastGivedTime
long getLastGivedTime()The time when the kit was last given to the player. -
getGivedCount
int getGivedCount()How many times a kit has been given to a player. -
setLastGivedTime
void setLastGivedTime(long value) Set the time of the last time a kit was given to a player. -
setGivedCount
void setGivedCount(int value) Set how many times a kit has been given to a player.
-