From 41832da25f9aa5cb37fee870752e64e5a9057c17 Mon Sep 17 00:00:00 2001 From: inglettronald Date: Sun, 4 Jun 2023 14:28:53 -0500 Subject: initial commit --- .../com/dulkirfabric/events/WidgetInitEvent.kt | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt (limited to 'src/main/kotlin/com/dulkirfabric/events') 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 -- cgit