blob: 09365a7baa9c62094272b281cd0fe80dc4071517 (
plain)
1
2
3
4
5
6
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.features.skillprogress.SkillType
// does not know how much exp is there, also gets called multiple times
class SkillExpGainEvent(val skill: SkillType, val gained: Double) : LorenzEvent()
|