it-fsm/assets/turnstile.d2

19 lines
223 B
Text
Raw Normal View History

2022-11-30 15:09:48 +03:00
direction: right
Turnstile: {
2022-11-30 16:22:16 +03:00
l: Locked {
shape: circle
style.fill: "#fd7373"
}
u: Unlocked {
shape: circle
style.fill: "#59c061"
}
l -> l: push
u -> l: push
l -> u: coin
u -> u: coin
2022-11-30 15:09:48 +03:00
}