⁠
kyle wood: Update copyright to 2023
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2022 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.nbt.lang.psi.mixins
- import com.demonwav.mcdev.nbt.lang.gen.psi.NbttNamedTag
- import com.demonwav.mcdev.nbt.lang.psi.NbttElement
- import com.demonwav.mcdev.nbt.tags.TagCompound
- interface NbttCompoundMixin : NbttElement {
- fun getNamedTagList(): List<NbttNamedTag>
- fun getCompoundTag(): TagCompound
- }
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.nbt.lang.psi.mixins
- import com.demonwav.mcdev.nbt.lang.gen.psi.NbttNamedTag
- import com.demonwav.mcdev.nbt.lang.psi.NbttElement
- import com.demonwav.mcdev.nbt.tags.TagCompound
- interface NbttCompoundMixin : NbttElement {
- fun getNamedTagList(): List<NbttNamedTag>
- fun getCompoundTag(): TagCompound
- }