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

@@ -0,0 +1,5 @@
package org.neoflock.neocomputers.util
fun interface TieredSupplier<T> {
fun get(tier: Int): T
}