summaryrefslogtreecommitdiff
path: root/crates/renderer/src/assets.rs
diff options
context:
space:
mode:
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")),
}
}
}