mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-06 01:15:31 -05:00
13 lines
465 B
Plaintext
13 lines
465 B
Plaintext
digraph FindColor {
|
|
"Retreive Client Pixel Data" -> "Match pixels with tolerance"
|
|
"Match pixels with tolerance" -> "We found a pixel that matched"
|
|
"Match pixels with tolerance" -> "We found no pixel that matched"
|
|
"We found a pixel that matched" -> "Done with finding"
|
|
"We found no pixel that matched" -> "Done with finding"
|
|
|
|
"Done with finding" -> "Free Client Pixel Data"
|
|
"Free Client Pixel Data" -> "Return the coordinates of the found pixel, if any"
|
|
|
|
|
|
}
|