Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class CoolDown {
- private UUID uuid;
- private long coolDownTime;
- private long timeStart;
- private String cmd;
- public CoolDown(UUID uuid, String cmd, long timeStart, long coolDownTime){
- this.uuid = uuid;
- this.cmd = cmd;
- this.timeStart = timeStart;
- this.coolDownTime = coolDownTime;
- }
- public UUID getUUID(){
- return uuid;
- }
- public long getTimeStart(){
- return timeStart;
- }
- public long getCoolDownTime(){
- return coolDownTime;
- }
- public String getCommand(){
- return cmd;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment