Make list fully a mutable map instead of just a map.
This commit is contained in:
parent
42b48f7065
commit
0135d1b6ed
|
@ -14,7 +14,7 @@ object AddKeyMaps {
|
||||||
key, "category.$prefix.$category"
|
key, "category.$prefix.$category"
|
||||||
) to lambda
|
) to lambda
|
||||||
}
|
}
|
||||||
val list: Map<KeyMapping, (() -> Unit)?> = mutableMapOf(
|
val list: MutableMap<KeyMapping, (() -> Unit)?> = mutableMapOf(
|
||||||
mkMap("opengui", GLFW_KEY_Y),
|
mkMap("opengui", GLFW_KEY_Y),
|
||||||
mkMap("configkey", GLFW_KEY_U)
|
mkMap("configkey", GLFW_KEY_U)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue