blob: 683b7ddae344d3583709840ea3ec098e7c7ce953 (
plain)
1
2
3
4
5
6
7
|
package moe.nea.firmament.events
import java.util.UUID
data class ProfileSwitchEvent(val oldProfile: UUID?, val newProfile: UUID?) : FirmamentEvent() {
companion object : FirmamentEventBus<ProfileSwitchEvent>()
}
|