Added inbox manager

This commit is contained in:
boy0001 2015-04-06 01:02:06 +10:00
parent e61a5f4505
commit ade657b1af

View File

@ -0,0 +1,12 @@
package com.intellectualcrafters.plot.object.comment;
import java.util.HashMap;
public class InboxManager {
public static HashMap<String, CommentInbox> inboxes = new HashMap<>();
public static void addInbox(String name, CommentInbox inbox) {
inboxes.put(name.toLowerCase(), inbox);
}
}