aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/texture/resolver.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:22 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:22 +0100
commit767b1c878532924775d5be7307e5aec10872e443 (patch)
treefcce38e88c3ffdb444095a1a90aee3c62c5afb68 /stockton-render/src/draw/texture/resolver.rs
parente8126750633fd9ed3e682a2c889740a1f51a86f7 (diff)
chore(all): fix lints
Diffstat (limited to 'stockton-render/src/draw/texture/resolver.rs')
-rw-r--r--stockton-render/src/draw/texture/resolver.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/stockton-render/src/draw/texture/resolver.rs b/stockton-render/src/draw/texture/resolver.rs
index 610d43a..668ea32 100644
--- a/stockton-render/src/draw/texture/resolver.rs
+++ b/stockton-render/src/draw/texture/resolver.rs
@@ -26,7 +26,6 @@ use std::path::Path;
/// An object that can be used to resolve a texture from a BSP File
pub trait TextureResolver<T: LoadableImage> {
-
/// Get the given texture, or None if it's corrupt/not there.
fn resolve(&mut self, texture: &Texture) -> Option<T>;
}