remove cruft, switch to JSON storage

This commit is contained in:
2025-11-04 22:28:05 -07:00
parent 4715e97536
commit cf5df577f5
8 changed files with 779 additions and 529 deletions

17
map.json Normal file
View File

@@ -0,0 +1,17 @@
{
"nodes": {
"TestA": [100, 0, 100],
"TestB": [150, 0, 200],
"TestC": [300, 0, -200, true],
"TestE": [1200, 0, 200, "Displayed Name"],
"TestFarLeft": [-200, 5000, 50],
"TestFarBottomRight": [1200, 0, 2000, true]
},
"edges": [
["TestA", "TestB"],
["TestA", "TestC"],
["TestB", "TestC"],
["TestC", "TestE"],
["TestE", "TestFarLeft"]
]
}