feat: start work on 0.2.0

This commit is contained in:
2025-01-19 05:13:25 -05:00
parent 771057925d
commit 4fa508ec81
16 changed files with 2363 additions and 4046 deletions

10
src/arguments.rs Normal file
View File

@@ -0,0 +1,10 @@
use clap::Parser;
use std::path::PathBuf;
/// A Minecraft utility bot
#[derive(Parser)]
pub struct Arguments {
/// Path to main Lua file
#[arg(short, long)]
pub script: Option<PathBuf>,
}