remove nms base sub module

This commit is contained in:
alexcrea 2025-07-09 11:21:22 +02:00
parent a8553debeb
commit 2f2923e910
Signed by: alexcrea
GPG key ID: E346CD16413450E3
5 changed files with 1 additions and 20 deletions

View file

@ -1 +0,0 @@
.lastDeploymentsId

View file

@ -1,12 +0,0 @@
group = rootProject.group
version = rootProject.version
plugins {
id("io.papermc.paperweight.userdev")
}
dependencies {
// Paper
paperweight.paperDevBundle("1.21.1-R0.1-SNAPSHOT")
}

View file

@ -1,15 +0,0 @@
package xyz.alexcrea.cuanvil.dependency.packet
import org.bukkit.entity.Player
open class PacketManagerBase {
open val canSetInstantBuild: Boolean
get() = false
open fun setInstantBuild(player: Player, instantBuild: Boolean) {
// Default implementation is empty.
}
}