aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/events/SupplyDebugInfo.kt
blob: cab0a205edaf835c0f4c75d20d25458167dfc2b5 (plain)
1
2
3
4
5
6
7
8
9
10
package moe.nea.ledger.events

import net.minecraftforge.fml.common.eventhandler.Event

class SupplyDebugInfo : Event() { // TODO: collect this in the event recorder
	val data = mutableListOf<Pair<String, Any>>()
	fun record(key: String, value: Any) {
		data.add(key to value)
	}
}