mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Added inbox manager
This commit is contained in:
parent
e61a5f4505
commit
ade657b1af
1 changed files with 12 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue