blob: 9aa93d7ec36df6198d02a8f505cf30dc39a43165 (
plain)
1
2
3
4
5
6
7
8
|
package com.dulkirfabric.util
// Currently, this will be used to create A list of items that have audible sounds associated with their usages
data class TrackedCooldown (
val itemID: Regex,
val cooldownDuration: Int, // in millis
var lastUsage: Long, // from System.currentTimeMillis
)
|