elm/libraries/Input/Button.elm

6 lines
No EOL
140 B
Elm

module Input.Button where
type ButtonPool t = { button : String -> t -> Element, presses : Signal t }
buttonPool : String -> ButtonPool t