15 lines
506 B
Java
15 lines
506 B
Java
package me.arcodeskel.uwpmcutils.commands;
|
|
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.scheduler.BukkitRunnable;
|
|
|
|
import java.util.*;
|
|
|
|
public interface Maps {
|
|
public final Set<Player> frozenPlayers = new HashSet<>();
|
|
public final Map<Player, Double> originalVelocity = new HashMap<>();
|
|
public final Map<Player, Boolean> sneakingPlayers = new HashMap<>();
|
|
public final Set<Player> activeCommands = new HashSet<>();
|
|
public final Set<String> enteringEndPortal = new HashSet<>();
|
|
}
|