mirror of https://github.com/zeldaret/botw.git
Havok: Fix warnings in hkpConstraintInstance
This commit is contained in:
parent
bdd2015a08
commit
50464f7435
|
@ -91,10 +91,10 @@ public:
|
||||||
|
|
||||||
void setVirtualMassInverse(const hkVector4& invMassA, const hkVector4& invMassB);
|
void setVirtualMassInverse(const hkVector4& invMassA, const hkVector4& invMassB);
|
||||||
|
|
||||||
void disable(void);
|
void disable();
|
||||||
void enable(void);
|
void enable();
|
||||||
void setEnabled(hkBool state);
|
void setEnabled(hkBool state);
|
||||||
hkBool isEnabled(void);
|
hkBool isEnabled();
|
||||||
|
|
||||||
inline hkpConstraintOwner* getOwner() const;
|
inline hkpConstraintOwner* getOwner() const;
|
||||||
inline hkpEntity* getMasterEntity() const;
|
inline hkpEntity* getMasterEntity() const;
|
||||||
|
@ -117,7 +117,7 @@ private:
|
||||||
friend class hkpSimpleConstraintContactMgr;
|
friend class hkpSimpleConstraintContactMgr;
|
||||||
friend class hkpSaveContactPointsUtil;
|
friend class hkpSaveContactPointsUtil;
|
||||||
|
|
||||||
hkpConstraintInstance() {}
|
hkpConstraintInstance() = default;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit hkpConstraintInstance(ConstraintPriority priority);
|
explicit hkpConstraintInstance(ConstraintPriority priority);
|
||||||
|
|
Loading…
Reference in New Issue