diff --git a/voxygen/src/anim/character/crun.rs b/voxygen/src/anim/character/crun.rs index a7915c6279..b5b0da0140 100644 --- a/voxygen/src/anim/character/crun.rs +++ b/voxygen/src/anim/character/crun.rs @@ -9,7 +9,7 @@ use vek::*; pub struct WieldAnimation; -impl Animation<'_>for WieldAnimation { +impl Animation for WieldAnimation { type Skeleton = CharacterSkeleton; type Dependency = (f32, f64); diff --git a/voxygen/src/anim/character/run - Copy.rs b/voxygen/src/anim/character/run - Copy.rs index bedd5a4496..6e0a6aff0b 100644 --- a/voxygen/src/anim/character/run - Copy.rs +++ b/voxygen/src/anim/character/run - Copy.rs @@ -8,7 +8,7 @@ use vek::*; pub struct SneakAnimation; -impl Animation<'_>for SneakAnimation { +impl Animation for SneakAnimation { type Skeleton = CharacterSkeleton; type Dependency = (Vec3, Vec3, Vec3, f64); diff --git a/voxygen/src/anim/character/sneak.rs b/voxygen/src/anim/character/sneak.rs index 9f7d0dedbf..263afc4350 100644 --- a/voxygen/src/anim/character/sneak.rs +++ b/voxygen/src/anim/character/sneak.rs @@ -8,7 +8,7 @@ use vek::*; pub struct SneakAnimation; -impl Animation<'_>for SneakAnimation { +impl Animation for SneakAnimation { type Skeleton = CharacterSkeleton; type Dependency = (Vec3, Vec3, Vec3, f64);