New demo artwork: Procedural String Lights

This commit is contained in:
Keavon Chambers
2024-01-05 15:16:48 -08:00
parent b3e4caec1a
commit c7fd9cfc21
7 changed files with 9 additions and 3 deletions
@@ -5,9 +5,10 @@ use crate::messages::prelude::*;
pub struct DemoArtworkDialog;
/// `(name, thumbnail, filename)`
const ARTWORK: [(&str, &str, &str); 2] = [
const ARTWORK: [(&str, &str, &str); 3] = [
("Valley of Spires", "ThumbnailValleyOfSpires", "valley-of-spires.graphite"),
("Just a Potted Cactus", "ThumbnailJustAPottedCactus", "just-a-potted-cactus.graphite"),
("Procedural String Lights", "ThumbnailProceduralStringLights", "procedural-string-lights.graphite"),
];
impl DialogLayoutHolder for DemoArtworkDialog {