render a singular server

This commit is contained in:
2026-05-03 17:21:24 +02:00
parent 5249832bd6
commit 4d37483057
14 changed files with 231 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
package org.neoflock.neocomputers.entity
import net.minecraft.core.BlockPos
import net.minecraft.world.level.block.entity.BlockEntity
import net.minecraft.world.level.block.state.BlockState
class RackEntity(pos: BlockPos, state: BlockState) : BlockEntity(BlockEntities.RACK_ENTITY.get(), pos, state) {
}