package me.arcodeskel.uwpmcutils.commands; import org.bukkit.entity.Player; import org.bukkit.scheduler.BukkitRunnable; import java.util.*; public interface Maps { public final Set frozenPlayers = new HashSet<>(); public final Map originalVelocity = new HashMap<>(); public final Map sneakingPlayers = new HashMap<>(); public final Set activeCommands = new HashSet<>(); public final Set enteringEndPortal = new HashSet<>(); }