mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Update require paths to relative string
This commit is contained in:
parent
0897821e1f
commit
5abd5eee91
25 changed files with 89 additions and 124 deletions
|
|
@ -1,8 +1,6 @@
|
|||
if not game then script = require "test/relative-string" end
|
||||
|
||||
local throw = require(script.Parent.throw)
|
||||
local flags = require(script.Parent.flags)
|
||||
local graph = require(script.Parent.graph)
|
||||
local throw = require "./throw"
|
||||
local flags = require "./flags"
|
||||
local graph = require "./graph"
|
||||
type Node<T> = graph.Node<T>
|
||||
type SourceNode<T> = graph.SourceNode<T>
|
||||
local create_node = graph.create_node
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue