Files
NeoComputers/src/main/kotlin/org/neoflock/neocomputers/entity/RackEntity.kt
2026-05-03 17:21:24 +02:00

8 lines
305 B
Kotlin

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) {
}