InvUI/invui-kotlin/src/main/kotlin/xyz/xenondevs/invui/Items.kt
2023-01-28 15:41:10 +01:00

8 lines
217 B
Kotlin

@file:Suppress("PackageDirectoryMismatch")
package xyz.xenondevs.invui.item
/**
* Calls [Item.notifyWindows] for all items in this [Iterable].
*/
fun Iterable<Item>.notifyWindows() = forEach { it.notifyWindows() }