aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/dulkirfabric/events
diff options
context:
space:
mode:
authoringlettronald <inglettronald@gmail.com>2023-06-04 14:28:53 -0500
committeringlettronald <inglettronald@gmail.com>2023-06-04 14:28:53 -0500
commit41832da25f9aa5cb37fee870752e64e5a9057c17 (patch)
treef7b6015ddee527367e1d8235b2fd36a155d62a20 /src/main/kotlin/com/dulkirfabric/events
downloadDulkirMod-Fabric-41832da25f9aa5cb37fee870752e64e5a9057c17.tar.gz
DulkirMod-Fabric-41832da25f9aa5cb37fee870752e64e5a9057c17.tar.bz2
DulkirMod-Fabric-41832da25f9aa5cb37fee870752e64e5a9057c17.zip
initial commit
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/events')
-rw-r--r--src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt b/src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt
new file mode 100644
index 0000000..9a6eebb
--- /dev/null
+++ b/src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt
@@ -0,0 +1,24 @@
+/**
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * If it is not possible or desirable to put the notice in a particular
+ * file, then You may include the notice in a location (such as a LICENSE
+ * file in a relevant directory) where a recipient would be likely to look
+ * for such a notice.
+ *
+ * You may add additional accurate notices of copyright ownership.
+ */
+
+package com.dulkirfabric.events
+
+object WidgetInitEvent {
+ var initialized = false
+
+ @JvmStatic
+ fun get(initialized: Boolean): WidgetInitEvent {
+ this.initialized = initialized
+ return this
+ }
+} \ No newline at end of file