mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 05:06:29 +00:00
15 lines
239 B
Plaintext
15 lines
239 B
Plaintext
digraph "Sync Files" {
|
|
graph [
|
|
ranksep = "0.7",
|
|
nodesep = "0.5",
|
|
];
|
|
node [
|
|
fontname = "monospace",
|
|
shape = "record",
|
|
];
|
|
|
|
my_model [label = "MyModel (Script)"]
|
|
foo [label = "foo (ModuleScript)"]
|
|
|
|
my_model -> foo
|
|
} |