mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 06:06:45 +01:00
14 lines
333 B
Java
14 lines
333 B
Java
|
package com.gmail.nossr50.chat.mailer;
|
||
|
|
||
|
import org.bukkit.plugin.Plugin;
|
||
|
import org.jetbrains.annotations.NotNull;
|
||
|
|
||
|
|
||
|
public abstract class AbstractChatMailer implements ChatMailer {
|
||
|
protected final @NotNull Plugin pluginRef;
|
||
|
|
||
|
public AbstractChatMailer(@NotNull Plugin pluginRef) {
|
||
|
this.pluginRef = pluginRef;
|
||
|
}
|
||
|
}
|