13 lines
367 B
Kotlin
13 lines
367 B
Kotlin
package moe.nea.firmament.features.macros
|
|
|
|
import kotlinx.serialization.Serializable
|
|
import moe.nea.firmament.util.data.DataHolder
|
|
|
|
@Serializable
|
|
data class MacroData(
|
|
var comboActions: List<ComboKeyAction> = listOf(),
|
|
var wheels: List<MacroWheel> = listOf(),
|
|
) {
|
|
object DConfig : DataHolder<MacroData>(kotlinx.serialization.serializer(), "macros", ::MacroData)
|
|
}
|