2021-05-13 12:11:59 +00:00
|
|
|
package com.alttd.chat;
|
2021-05-10 08:01:35 +00:00
|
|
|
|
2021-06-06 19:32:13 +00:00
|
|
|
import com.alttd.chat.database.DatabaseConnection;
|
2021-05-10 08:01:35 +00:00
|
|
|
import net.luckperms.api.LuckPerms;
|
|
|
|
|
|
|
|
|
|
public interface ChatAPI {
|
|
|
|
|
|
2021-05-15 10:34:19 +00:00
|
|
|
static ChatAPI get() {
|
|
|
|
|
return ChatImplementation.get();
|
|
|
|
|
}
|
2021-05-10 08:01:35 +00:00
|
|
|
|
|
|
|
|
LuckPerms getLuckPerms();
|
2021-05-10 08:35:47 +00:00
|
|
|
|
2021-06-06 19:32:13 +00:00
|
|
|
DatabaseConnection getDataBase();
|
2021-05-13 12:11:29 +00:00
|
|
|
|
2021-08-14 17:55:32 +00:00
|
|
|
void ReloadConfig();
|
|
|
|
|
|
|
|
|
|
void ReloadChatFilters();
|
|
|
|
|
|
2021-05-10 08:01:35 +00:00
|
|
|
}
|