mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-06 01:15:31 -05:00
24 lines
293 B
Plaintext
24 lines
293 B
Plaintext
digraph input_types {
|
|
Input [shape=box]
|
|
|
|
Input -> Silent
|
|
Input -> "Not Silent"
|
|
|
|
"Not Silent" -> Mouse
|
|
"Not Silent" -> Keyboard
|
|
|
|
Silent -> Mouse
|
|
Silent -> Keyboard
|
|
|
|
Mouse -> Click
|
|
|
|
Click -> Left
|
|
Click -> Right
|
|
Click -> Middle
|
|
|
|
Mouse -> Move
|
|
|
|
Keyboard -> Down
|
|
Keyboard -> Up
|
|
}
|