burn everything to the ground (#11)

🔥🔥🔥🔥🔥
This commit is contained in:
Chance 2024-12-19 20:54:46 -05:00 committed by BitSyndicate
parent a9f8b43f50
commit 0ed2fda4c8
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 443E4198D6BBA6DE
30 changed files with 528 additions and 1088 deletions

29
engine/src/core/splash.rs Normal file
View file

@ -0,0 +1,29 @@
use colored::Colorize;
pub fn print_splash() {
println!(
"{}",
format!(
r#"
Version: {}
"#,
env!("CARGO_PKG_VERSION").green()
)
.bright_yellow()
);
}