zenyx-engine-telemetry/engine/src/core/repl/mod.rs

24 lines
380 B
Rust
Raw Normal View History

2024-12-21 16:28:32 -05:00
use commands::{
2025-01-11 15:12:18 -05:00
ClearCommand, CounterCommand, ExitCommand, HelpCommand, PanicCommmand,ExecFile
2024-12-21 16:28:32 -05:00
};
use crate::commands;
pub mod commands;
pub mod handler;
pub mod input;
pub mod zlua;
2024-12-06 11:19:12 -05:00
pub fn setup() {
commands!(
HelpCommand,
2025-01-11 15:12:18 -05:00
ExecFile,
ClearCommand,
ExitCommand,
CounterCommand,
2024-12-21 16:28:32 -05:00
PanicCommmand,
zlua::ZLua
);
}