feat(networking): Introduce Minecraft networking support with basic data reader and writers

This commit is contained in:
2026-03-01 12:40:10 +01:00
parent 2e9f4c1689
commit 0e5a907446
14 changed files with 761 additions and 39 deletions

View File

@@ -0,0 +1,13 @@
plugins {
id("de.siphalor.tweed5.local-runtime-only")
id("de.siphalor.tweed5.minecraft.mod.cross-version")
}
dependencies {
modCompileOnly(fabricApi.module("fabric-networking-api-v1", mcLibs.versions.fabric.api.get()))
compileOnly("de.siphalor.tweed5:tweed5-core")
compileOnly("de.siphalor.tweed5:tweed5-serde-extension")
testImplementation("de.siphalor.tweed5:tweed5-core")
testImplementation("de.siphalor.tweed5:tweed5-serde-extension")
}