CSkeleton: Make NumBones() return a size_t

Consistent with the rest of the API.
This commit is contained in:
Lioncash 2020-06-18 07:27:56 -04:00
parent 132d452c88
commit 671b8037b9
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public:
void Draw(FRenderOptions Options, const CBoneTransformData *pkData);
std::pair<int32, float> RayIntersect(const CRay& rkRay, const CBoneTransformData& rkData) const;
uint32 NumBones() const { return mBones.size(); }
size_t NumBones() const { return mBones.size(); }
CBone* RootBone() const { return mpRootBone; }
};