digraph G {
node [fontname = "Handlee"];
edge [fontname = "Handlee"];
draw [
label = "Draw a picture";
shape = rect;
];
win [
label = "You win!";
shape = oval;
];
guess [
label = "Did they\nguess it?";
shape = diamond;
];
point [
label = "Point repeatedly\nto the same picture.";
shape = rect;
];
draw -> guess;
win -> guess [ label = "Yes"; dir=back ];
point -> guess;
guess -> point [ label = "No" ];
{
rank=same;
guess; point; win;
}
}