uploading levels i think

This commit is contained in:
Reid 2023-09-04 19:51:37 -07:00
parent dfcd9e8921
commit ac8a121a8c
Signed by: reidlab
GPG key ID: 6C9EAA3364F962C8
9 changed files with 167 additions and 9 deletions

7
src/helpers/levels.rs Normal file
View file

@ -0,0 +1,7 @@
use std::sync::LazyLock;
pub static DEFAULT_EXTRA_STRING: LazyLock<String> = LazyLock::new(|| {
let string = String::from("29_29_29_40_29_29_29_29_29_29_29_29_29_29_29_29");
return string;
});