Add square brush

This commit is contained in:
Stoppedpuma 2024-10-08 13:35:26 +02:00
parent 162ec4256e
commit 4256ba691e
No known key found for this signature in database
GPG key ID: 74C8CDFAC0EF795A
2 changed files with 3 additions and 0 deletions

BIN
res/brushes/brush6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 B

View file

@ -79,6 +79,9 @@ fn default_brushes() -> Vec<RgbaImage> {
image::load_from_memory(include_bytes!("../res/brushes/brush5.png"))
.expect("Brushes must always load")
.into_rgba8(),
image::load_from_memory(include_bytes!("../res/brushes/brush6.png"))
.expect("Brushes must always load")
.into_rgba8(),
]
}