Created
April 26, 2020 20:58
-
-
Save magicspon/86d1a2c816dffd8c165e81a80851f490 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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
const waiting = { | |
on: { | |
BET: "playing", | |
RAISE: "betting", | |
}, | |
} | |
const playing = { | |
on: { | |
FOLD: "folded", | |
CHECK: "waiting", | |
BET: "betting", | |
}, | |
} | |
const betting = { | |
on: { | |
CALL: "waiting", | |
RAISE: "waiting", | |
FOLD: "folded", | |
}, | |
} | |
const folded = { | |
type: "final", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment