mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
Move lua files to their own directory
This commit is contained in:
parent
099d49c9e8
commit
d5345c103b
12 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@ use smol_mlua::{
|
|||
Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./basic_sleep.luau");
|
||||
const MAIN_SCRIPT: &str = include_str!("../lua/basic_sleep.luau");
|
||||
|
||||
pub fn main() -> LuaResult<()> {
|
||||
// Set up persistent lua environment
|
||||
|
|
|
@ -6,7 +6,7 @@ use smol_mlua::{
|
|||
LuaExecutorExt, Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./basic_spawn.luau");
|
||||
const MAIN_SCRIPT: &str = include_str!("../lua/basic_spawn.luau");
|
||||
|
||||
pub fn main() -> LuaResult<()> {
|
||||
// Set up persistent lua environment
|
||||
|
|
|
@ -3,7 +3,7 @@ use smol_mlua::{
|
|||
Callbacks, Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./callbacks.luau");
|
||||
const MAIN_SCRIPT: &str = include_str!("../lua/callbacks.luau");
|
||||
|
||||
pub fn main() -> LuaResult<()> {
|
||||
// Set up persistent lua environment
|
||||
|
|
|
@ -6,7 +6,7 @@ use smol_mlua::{
|
|||
Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./lots_of_threads.luau");
|
||||
const MAIN_SCRIPT: &str = include_str!("../lua/lots_of_threads.luau");
|
||||
|
||||
const ONE_NANOSECOND: Duration = Duration::from_nanos(1);
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ use smol_mlua::{
|
|||
Callbacks, IntoLuaThread, Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./main.luau");
|
||||
const MAIN_SCRIPT: &str = include_str!("../lua/main.luau");
|
||||
|
||||
pub fn main() -> LuaResult<()> {
|
||||
// Set up persistent lua environment
|
||||
|
|
|
@ -6,7 +6,7 @@ use smol_mlua::{
|
|||
Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./scheduler_ordering.luau");
|
||||
const MAIN_SCRIPT: &str = include_str!("../lua/scheduler_ordering.luau");
|
||||
|
||||
pub fn main() -> LuaResult<()> {
|
||||
// Set up persistent lua environment
|
||||
|
|
Loading…
Add table
Reference in a new issue