Scaffold Lumbridge architecture and research plan

This commit is contained in:
2026-08-31 14:37:49 -07:00
commit 8971ddcf58
19 changed files with 840 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
use lumbridge_core::{Platform, ProductStatus};
fn main() {
let status = ProductStatus::architecture_phase(Platform::current());
println!(
"Lumbridge {} ({})",
env!("CARGO_PKG_VERSION"),
status.platform
);
println!("{}", status.message);
}