Remove unnecessary elided lifetimes

This commit is contained in:
Adam Whitehurst 2019-11-11 08:26:44 -08:00
parent 64a0d8d91f
commit 59826a364a
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ use vek::*;
pub struct WieldAnimation;
impl Animation<'_>for WieldAnimation {
impl Animation for WieldAnimation {
type Skeleton = CharacterSkeleton;
type Dependency = (f32, f64);

View File

@ -8,7 +8,7 @@ use vek::*;
pub struct SneakAnimation;
impl Animation<'_>for SneakAnimation {
impl Animation for SneakAnimation {
type Skeleton = CharacterSkeleton;
type Dependency = (Vec3<f32>, Vec3<f32>, Vec3<f32>, f64);

View File

@ -8,7 +8,7 @@ use vek::*;
pub struct SneakAnimation;
impl Animation<'_>for SneakAnimation {
impl Animation for SneakAnimation {
type Skeleton = CharacterSkeleton;
type Dependency = (Vec3<f32>, Vec3<f32>, Vec3<f32>, f64);