From 7fbec03ecc1c06a0b6ac0d74f8a5b2e68f33ecd5 Mon Sep 17 00:00:00 2001 From: lily Date: Wed, 23 Apr 2025 17:56:40 -0400 Subject: [PATCH] fix: removed unused `_ICON` and `_PUMPKIN` variables --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2764eed..0105e37 100644 --- a/src/main.rs +++ b/src/main.rs @@ -141,9 +141,6 @@ struct WgpuState { instance: wgpu::Instance, } -static _ICON: &[u8] = include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/assets/Badge.png")); -static _PUMPKIN: &[u8] = include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/Pumpkin.obj")); - impl WgpuState { fn new() -> Self { let backends = Backends::PRIMARY;