zstd test

This commit is contained in:
minjaesong
2023-12-20 02:12:03 +09:00
parent f467e6b6b1
commit d4fe903273
10 changed files with 187 additions and 5 deletions

View File

@@ -21,7 +21,6 @@ class HashArray<R>: HashMap<Long, R>() // primitives are working just fine tho
class WiringGraphMap: HashMap<ItemID, GameWorld.WiringSimCell>()
class HashedWirings: HashMap<BlockAddress, GameWorld.WiringNode>()
class HashedWiringGraph: HashMap<BlockAddress, WiringGraphMap>()
class MetaModuleCSVPair: HashMap<String, ZipCodedStr>()
class PlayersLastStatus: HashMap<String, PlayerLastStatus>() {
operator fun get(uuid: UUID) = this[uuid.toString()]
operator fun set(uuid: UUID, value: PlayerLastStatus) = this.set(uuid.toString(), value)