diff options
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt')
-rw-r--r-- | src/main/kotlin/com/dulkirfabric/events/WidgetInitEvent.kt | 24 |
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 |