i have this code:
public class Game {
String NO_MOVEMENTS = ChatColor.RED+"You don't have sufficient movements to do that";
public static HashMap<Player,Integer> movements = new HashMap<>();
public void setupMovements(Player player){
movements.put(player,15);
}
public void movementsManager(Player player){
}
public static HashMap arrowShoow(Player player){
}
}
And i need to know the "movements"(int) of the hashmap, how i do get it?? thank you so much!