mirror of
https://github.com/zeldaret/botw
synced 2026-09-02 17:53:10 -04:00
ksys/phys: Start adding RagdollController
This commit is contained in:
@@ -30,6 +30,7 @@ public:
|
||||
auto operator=(const hkArrayBase&) = delete;
|
||||
|
||||
HK_FORCE_INLINE int getSize() const;
|
||||
HK_FORCE_INLINE int size() const;
|
||||
HK_FORCE_INLINE int getCapacity() const;
|
||||
HK_FORCE_INLINE int getCapacityAndFlags() const;
|
||||
HK_FORCE_INLINE hkBool isEmpty() const;
|
||||
@@ -168,6 +169,11 @@ inline int hkArrayBase<T>::getSize() const {
|
||||
return m_size;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
inline int hkArrayBase<T>::size() const {
|
||||
return getSize();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
inline int hkArrayBase<T>::getCapacity() const {
|
||||
return m_capacityAndFlags & static_cast<int>(CAPACITY_MASK);
|
||||
|
||||
Reference in New Issue
Block a user