-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
digraph { | ||
graph [rankdir=LR] | ||
node [fillcolor=white fontname="sans-serif" shape=rect style=filled] | ||
"start method" [color="#888888" fontcolor="#888888" style=filled] | ||
end [color="#888888" fontcolor="#888888" style=filled] | ||
"start view" [color="#888888" fontcolor="#888888" style="filled, rounded"] | ||
"save the princess" [color="#888888" fontcolor="#888888" style="filled, rounded"] | ||
"start view" -> "save the princess" | ||
"start method" -> "save the princess" | ||
"save the princess" -> end | ||
end [color=black fontcolor=black style="filled, bold"] | ||
"start method" [color=black fontcolor=black style="filled, bold"] | ||
obsolete [color=black fontcolor=black style="filled, dashed, bold"] | ||
"start method" -> obsolete [style=dashed] | ||
obsolete -> end [style=dashed] | ||
} |
This file contains 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
This file contains 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