burn everything to the ground (#11)

🔥🔥🔥🔥🔥
This commit is contained in:
Chance 2024-12-19 20:54:46 -05:00 committed by BitSyndicate
parent dca88dc1db
commit 8416e48ab2
Signed by: bitsyndicate
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()
);
}