This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package de.YonasCode.TheCore.MultiMap; | |
| import java.io.Serializable; | |
| import java.util.ArrayList; | |
| import java.util.Collection; | |
| import java.util.HashMap; | |
| import java.util.Set; | |
| public class MultiMap<A, B, C> implements Cloneable, Iterable<A>, Serializable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package <your-package>; | |
| import java.util.HashMap; | |
| import java.util.Set; | |
| import org.bukkit.entity.Player; | |
| public class CooldownManager { | |
| private long time; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package <your-package>; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.ChatColor; | |
| import org.bukkit.command.CommandSender; | |
| public class MessageManager { | |
| private static MessageManager instance = new MessageManager(); | |
| public String prefix = "myprefix"; |
NewerOlder