I like to move it move it

This commit is contained in:
Filip Tibell 2024-01-20 00:19:04 +01:00
parent d5345c103b
commit 047e6a5f6e
No known key found for this signature in database
12 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@ use smol_mlua::{
Runtime,
};
const MAIN_SCRIPT: &str = include_str!("../lua/basic_sleep.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/basic_sleep.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment

View file

@ -6,7 +6,7 @@ use smol_mlua::{
LuaExecutorExt, Runtime,
};
const MAIN_SCRIPT: &str = include_str!("../lua/basic_spawn.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/basic_spawn.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment

View file

@ -3,7 +3,7 @@ use smol_mlua::{
Callbacks, Runtime,
};
const MAIN_SCRIPT: &str = include_str!("../lua/callbacks.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/callbacks.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment

View file

@ -6,7 +6,7 @@ use smol_mlua::{
Runtime,
};
const MAIN_SCRIPT: &str = include_str!("../lua/lots_of_threads.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/lots_of_threads.luau");
const ONE_NANOSECOND: Duration = Duration::from_nanos(1);

View file

@ -9,7 +9,7 @@ use smol_mlua::{
Callbacks, IntoLuaThread, Runtime,
};
const MAIN_SCRIPT: &str = include_str!("../lua/main.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/main.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment

View file

@ -6,7 +6,7 @@ use smol_mlua::{
Runtime,
};
const MAIN_SCRIPT: &str = include_str!("../lua/scheduler_ordering.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/scheduler_ordering.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment