mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-29 16:41:32 +00:00
11 lines
227 B
Kotlin
11 lines
227 B
Kotlin
package gay.pizza.pork.bir
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class IrWorld(var slabs: List<IrSlab>) : IrElement() {
|
|
override fun crawl(block: (IrElement) -> Unit) {
|
|
slabs.forEach(block)
|
|
}
|
|
}
|