Created
August 14, 2022 14:38
-
-
Save motorro/8a999c502d097c7d32af71724f2ce315 to your computer and use it in GitHub Desktop.
Bound machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Common state machine | |
* @param G UI gesture | |
* @param U UI state | |
*/ | |
interface CommonStateMachine<G: Any, U: Any> : MachineInput<G>, MachineOutput<G, U> | |
/** | |
* Common state-machine state | |
* @param G UI gesture | |
* @param U UI state | |
*/ | |
open class CommonMachineState<G: Any, U : Any> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment