CSkeleton: Remove default constructor from SBoneTransformInfo

This is unnecessary given initializers are already provided.

This also makes the struct constexpr capable by default as well.
This commit is contained in:
Lioncash 2020-06-18 07:31:04 -04:00
parent 60d003df88
commit 84e0d177d8
1 changed files with 0 additions and 2 deletions

View File

@ -19,8 +19,6 @@ struct SBoneTransformInfo
CVector3f Position{CVector3f::Zero()};
CQuaternion Rotation{CQuaternion::Identity()};
CVector3f Scale{CVector3f::One()};
SBoneTransformInfo() = default;
};
class CSkeleton : public CResource