package org.openrs2.cache.config.enum import jakarta.inject.Inject import jakarta.inject.Singleton import org.openrs2.cache.Cache import org.openrs2.cache.Js5Archive import org.openrs2.cache.config.ArchiveConfigTypeList @Singleton public class EnumTypeList @Inject constructor(cache: Cache) : ArchiveConfigTypeList( cache, archive = Js5Archive.CONFIG_ENUM, fileBits = 8 ) { override fun allocate(id: Int): EnumType { return EnumType(id) } }