diff --git a/res/brushes/brush6.png b/res/brushes/brush6.png new file mode 100644 index 0000000..0adecb9 Binary files /dev/null and b/res/brushes/brush6.png differ diff --git a/src/image_editing.rs b/src/image_editing.rs index cbfd12f..c2eff61 100644 --- a/src/image_editing.rs +++ b/src/image_editing.rs @@ -79,6 +79,9 @@ fn default_brushes() -> Vec { 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(), ] }