summaryrefslogtreecommitdiff
path: root/crates/renderer/src/assets.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-06-29 20:28:08 -0400
committerLLLL Colonq <llll@colonq>2026-06-29 20:28:08 -0400
commitab5106e978c8c3d5cd2f97f4da1fb9e4275d7f61 (patch)
tree9d2242ce2e00cb1a3e9e6d2985d59c54390f79e1 /crates/renderer/src/assets.rs
parent9065f3c9765123f5f5bc503407c493fdb7c79488 (diff)
Diffstat (limited to 'crates/renderer/src/assets.rs')
-rw-r--r--crates/renderer/src/assets.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/renderer/src/assets.rs b/crates/renderer/src/assets.rs
index 4eb681a..042fc88 100644
--- a/crates/renderer/src/assets.rs
+++ b/crates/renderer/src/assets.rs
@@ -16,6 +16,7 @@ pub struct Assets {
pub texture_operatop: texture::Texture,
pub texture_operabottom: texture::Texture,
pub texture_clippyborder: texture::Texture,
+ pub texture_exclusive: texture::Texture,
}
impl Assets {
@@ -72,6 +73,7 @@ impl Assets {
texture_operatop: texture::Texture::new(ctx, include_bytes!("assets/textures/operatop.png")),
texture_operabottom: texture::Texture::new(ctx, include_bytes!("assets/textures/operabottom.png")),
texture_clippyborder: texture::Texture::new(ctx, include_bytes!("assets/textures/clippyborder.png")),
+ texture_exclusive: texture::Texture::new(ctx, include_bytes!("assets/textures/exclusive.png")),
}
}
}