mirror of
https://github.com/centau/vide.git
synced 2026-08-20 23:01: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,13 +1,12 @@
|
|||
if not game then script = require "test/relative-string" end
|
||||
local typeof = game and typeof or require "test/mock".typeof :: never
|
||||
local Vector2 = game and Vector2 or require "test/mock".Vector2 :: never
|
||||
local UDim2 = game and UDim2 or require "test/mock".UDim2 :: never
|
||||
local typeof = game and typeof or require "../test/mock".typeof :: never
|
||||
local Vector2 = game and Vector2 or require "../test/mock".Vector2 :: never
|
||||
local UDim2 = game and UDim2 or require "../test/mock".UDim2 :: never
|
||||
|
||||
local flags = require(script.Parent.flags)
|
||||
local throw = require(script.Parent.throw)
|
||||
local bind = require(script.Parent.bind)
|
||||
local _, is_action = require(script.Parent.action)()
|
||||
local graph = require(script.Parent.graph)
|
||||
local flags = require "./flags"
|
||||
local throw = require "./throw"
|
||||
local bind = require "./bind"
|
||||
local _, is_action = require "./action"()
|
||||
local graph = require "./graph"
|
||||
type Node<T> = graph.Node<T>
|
||||
|
||||
type Array<V> = { V }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue