add test stuff, may or may not have totally cooked the project for you guys

This commit is contained in:
mewhenthe
2026-04-11 14:00:05 +02:00
parent dd21f21c2a
commit 9af5b77a1f
16 changed files with 560 additions and 195 deletions

View File

@@ -3,12 +3,9 @@ package org.neoflock.neocomputers.block
import net.minecraft.world.level.block.Block
class BaseBlock : Block {
protected val tier: Int
val tier: Int
constructor(tier: Int): super(Properties.of()) {
this.tier = tier
}
public fun getTier(): Int {
return tier
}
}