mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 19:56:44 +02:00
fix compiler warning
This commit is contained in:
parent
f1a0edb471
commit
1c8c41463a
2 changed files with 5 additions and 0 deletions
|
@ -27,6 +27,10 @@ HandData::HandData(AvatarData* owningAvatar) :
|
||||||
addNewPalm();
|
addNewPalm();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HandData::~HandData() {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
PalmData& HandData::addNewPalm() {
|
PalmData& HandData::addNewPalm() {
|
||||||
_palms.push_back(PalmData(this));
|
_palms.push_back(PalmData(this));
|
||||||
return _palms.back();
|
return _palms.back();
|
||||||
|
|
|
@ -44,6 +44,7 @@ enum RaveGloveEffectsMode
|
||||||
class HandData {
|
class HandData {
|
||||||
public:
|
public:
|
||||||
HandData(AvatarData* owningAvatar);
|
HandData(AvatarData* owningAvatar);
|
||||||
|
virtual ~HandData();
|
||||||
|
|
||||||
// These methods return the positions in Leap-relative space.
|
// These methods return the positions in Leap-relative space.
|
||||||
// To convert to world coordinates, use Hand::leapPositionToWorldPosition.
|
// To convert to world coordinates, use Hand::leapPositionToWorldPosition.
|
||||||
|
|
Loading…
Reference in a new issue