aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/utils/notifications/Notifications.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/utils/notifications/Notifications.java')
-rw-r--r--src/main/java/cc/polyfrost/oneconfig/utils/notifications/Notifications.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/utils/notifications/Notifications.java b/src/main/java/cc/polyfrost/oneconfig/utils/notifications/Notifications.java
new file mode 100644
index 0000000..5c25854
--- /dev/null
+++ b/src/main/java/cc/polyfrost/oneconfig/utils/notifications/Notifications.java
@@ -0,0 +1,32 @@
+package cc.polyfrost.oneconfig.utils.notifications;
+
+/**
+ * @deprecated Reserved for future use, not implemented yet.
+ */
+@Deprecated
+public final class Notifications {
+ public static final Notifications INSTANCE = new Notifications();
+ private Notifications() {
+
+ }
+
+ public void send(String title, String message) {
+
+ }
+
+ public void send(String title, String message, Runnable action) {
+
+ }
+
+ public void send(String title, String message, float duration) {
+
+ }
+
+ public void send(String title, String message, float duration, Runnable action) {
+
+ }
+
+ public void send(String title, String message, float duration, Runnable action, Runnable onClose) {
+
+ }
+}