aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events/SecondPassedEvent.kt
blob: 0175fefc53450734e40d42191a1620bcb7e43bd7 (plain)
1
2
3
4
5
package at.hannibal2.skyhanni.events

class SecondPassedEvent(private val totalSeconds: Int) : LorenzEvent() {
    fun repeatSeconds(i: Int) = i % totalSeconds == 0
}