From 3e0167f4085e2d9d56d4ff28d9b5314796792323 Mon Sep 17 00:00:00 2001 From: rascul Date: Wed, 6 Aug 2025 17:11:16 -0500 Subject: [PATCH] add argh --- src/main.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index a30eb95..3626c46 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,12 @@ +use argh::FromArgs; + +#[derive(FromArgs, Debug)] +/// A 3D exploration game using real world imagery. +struct Args { +} + fn main() { - println!("Hello, world!"); + let _args: Args = argh::from_env(); + + println!("Vibescape"); }