mirror of
https://github.com/rm-code/Graphoon.git
synced 2024-11-16 18:24:22 +00:00
73b74ca3fe
This way they can be required separately from the Graph class.
6 lines
195 B
Lua
6 lines
195 B
Lua
return {
|
|
Edge = require( (...):gsub('%.init$', '') .. '.Edge' ),
|
|
Graph = require( (...):gsub('%.init$', '') .. '.Graph' ),
|
|
Node = require( (...):gsub('%.init$', '') .. '.Node' )
|
|
};
|