diff --git a/src/Core/Resource/Animation/CAnimation.h b/src/Core/Resource/Animation/CAnimation.h index 3c875a67..655c6472 100644 --- a/src/Core/Resource/Animation/CAnimation.h +++ b/src/Core/Resource/Animation/CAnimation.h @@ -13,9 +13,9 @@ class CAnimation : public CResource DECLARE_RESOURCE_TYPE(Animation) friend class CAnimationLoader; - typedef std::vector TScaleChannel; - typedef std::vector TRotationChannel; - typedef std::vector TTranslationChannel; + using TScaleChannel = std::vector; + using TRotationChannel = std::vector; + using TTranslationChannel = std::vector; float mDuration = 0.0f; float mTickInterval = 0.0333333f;