From 1ba72e4b14b34083aaca31f87c6c30a01bf8143f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bro=C4=8Dko?= Date: Thu, 6 Sep 2018 07:44:39 +0200 Subject: [PATCH] ChatNotifier: start --- .../mc/essentials/features/ChatNotifier.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/cz/marwland/mc/essentials/features/ChatNotifier.java diff --git a/src/cz/marwland/mc/essentials/features/ChatNotifier.java b/src/cz/marwland/mc/essentials/features/ChatNotifier.java new file mode 100644 index 0000000..23e3b76 --- /dev/null +++ b/src/cz/marwland/mc/essentials/features/ChatNotifier.java @@ -0,0 +1,12 @@ +package cz.marwland.mc.essentials.features; + +import cz.marwland.mc.core.MarwCore; +import cz.marwland.mc.core.features.Feature; + +public class ChatNotifier extends Feature { + + public ChatNotifier(MarwCore plugin) { + super(plugin, null); + } + +}