Print random easter egg

This commit is contained in:
Joscha 2024-03-30 16:28:30 +01:00
parent b293408cbc
commit a9ba160c13
15 changed files with 106 additions and 3 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 673 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 901 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -3,3 +3,14 @@ pub const UNIFONT_JP: &[u8] = include_bytes!("../data/unifont_jp-15.1.05.otf");
pub const UNIFONT_UPPER: &[u8] = include_bytes!("../data/unifont_upper-15.1.05.otf");
pub const UNIFONT_NAME: &str = "Unifont";
pub const UNIFONT_SIZE: f32 = 16.0;
pub const EGG_COVER: &[u8] = include_bytes!("../data/egg_cover.png");
pub const EGG_PATTERNS: &[&[u8]] = &[
include_bytes!("../data/egg_pattern_0.png"),
include_bytes!("../data/egg_pattern_1.png"),
include_bytes!("../data/egg_pattern_2.png"),
include_bytes!("../data/egg_pattern_3.png"),
include_bytes!("../data/egg_pattern_4.png"),
include_bytes!("../data/egg_pattern_5.png"),
include_bytes!("../data/egg_pattern_6.png"),
];