summaryrefslogtreecommitdiff
path: root/pixel-client/src/render/misc.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-08-14 21:40:30 +0200
committermetamuffin <metamuffin@disroot.org>2024-08-14 21:40:30 +0200
commitc44b86bcd86762dcdf1268ebfd3be9899ccf24ba (patch)
tree7ac984467e973f5abfa78c913e692ce06c0ca4e6 /pixel-client/src/render/misc.rs
parentc4ecfadbdfa8487a390958dbd80240f58b286303 (diff)
downloadhurrycurry-c44b86bcd86762dcdf1268ebfd3be9899ccf24ba.tar
hurrycurry-c44b86bcd86762dcdf1268ebfd3be9899ccf24ba.tar.bz2
hurrycurry-c44b86bcd86762dcdf1268ebfd3be9899ccf24ba.tar.zst
pc: add itembubble and config save/load
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 2197b89c..7a631154 100644
--- a/pixel-client/src/render/misc.rs
+++ b/pixel-client/src/render/misc.rs
@@ -25,6 +25,7 @@ pub struct MiscTextures {
pub interact_target: Sprite,
pub solid: Rect,
pub clouds: Rect,
+ pub itembubble: Rect,
}
impl MiscTextures {
@@ -39,6 +40,7 @@ impl MiscTextures {
),
solid: *layout.get("solid+a").unwrap(),
clouds: *layout.get("clouds+a").unwrap(),
+ itembubble: *layout.get("itembubble+a").unwrap(),
}
}
}