summaryrefslogtreecommitdiff
path: root/pixel-client/src/render/misc.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-25 13:50:09 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-25 13:50:09 +0200
commitecb6ff15c24841dc08ab8f5c3b347c8080720ac4 (patch)
treed53db2a61a6151af970f9d27a617d12e0cac7588 /pixel-client/src/render/misc.rs
parentbc210b2632891ca163d31fb57bc0c41769249bf5 (diff)
downloadhurrycurry-ecb6ff15c24841dc08ab8f5c3b347c8080720ac4.tar
hurrycurry-ecb6ff15c24841dc08ab8f5c3b347c8080720ac4.tar.bz2
hurrycurry-ecb6ff15c24841dc08ab8f5c3b347c8080720ac4.tar.zst
pc: main menu background
Diffstat (limited to 'pixel-client/src/render/misc.rs')
-rw-r--r--pixel-client/src/render/misc.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/pixel-client/src/render/misc.rs b/pixel-client/src/render/misc.rs
index 05cde8e4..2197b89c 100644
--- a/pixel-client/src/render/misc.rs
+++ b/pixel-client/src/render/misc.rs
@@ -24,6 +24,7 @@ pub struct MiscTextures {
pub customer: Sprite,
pub interact_target: Sprite,
pub solid: Rect,
+ pub clouds: Rect,
}
impl MiscTextures {
@@ -37,6 +38,7 @@ impl MiscTextures {
10.,
),
solid: *layout.get("solid+a").unwrap(),
+ clouds: *layout.get("clouds+a").unwrap(),
}
}
}