Changes in the Standard Config
minor code changes / bug fixes
started for cooldown
This commit is contained in:
2024-06-15 02:32:10 +02:00
parent 9aede116ac
commit d25b704ff1
14 changed files with 108 additions and 339 deletions

View File

@@ -0,0 +1,15 @@
package net.t2code.alias.Spigot.objects;
import java.util.UUID;
public class Cooldown {
public UUID player;
public Long long_;
public Cooldown(UUID player,
Long long_) {
this.player = player;
this.long_ = long_;
}
}