zenyx-engine/engine/src/core/repl/mod.rs
2024-12-19 20:54:46 -05:00

12 lines
253 B
Rust

use commands::{ClearCommand, CounterCommand, ExecFile, ExitCommand, HelpCommand};
use crate::commands;
pub mod commands;
pub mod input;
pub mod handler;
pub fn setup() {
commands!(HelpCommand,ClearCommand,ExitCommand,ExecFile,CounterCommand);
}