CSkeleton: Make NumBones() return a size_t
Consistent with the rest of the API.
This commit is contained in:
parent
132d452c88
commit
671b8037b9
|
@ -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; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue