⁠
kyle wood: Update copyright to 2023
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2022 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.platform.mixin.reference
- import com.intellij.openapi.project.Project
- import com.intellij.psi.PsiElement
- interface MixinReference {
- val description: String
- fun isUnresolved(context: PsiElement): Boolean
- fun isValidAnnotation(name: String, project: Project): Boolean
- }
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.platform.mixin.reference
- import com.intellij.openapi.project.Project
- import com.intellij.psi.PsiElement
- interface MixinReference {
- val description: String
- fun isUnresolved(context: PsiElement): Boolean
- fun isValidAnnotation(name: String, project: Project): Boolean
- }