7 lines
218 B
Lua
7 lines
218 B
Lua
|
--Manage the pathfinding nodes used by DEFCON.
|
||
|
--This is important for a mapping tool because the DEFCON client will not load a map unless
|
||
|
--the pathfinding nodes form a connected graph.
|
||
|
local nodes = {}
|
||
|
|
||
|
|
||
|
return nodes
|