mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +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();
|
||||
}
|
||||
|
||||
HandData::~HandData() {
|
||||
}
|
||||
|
||||
|
||||
PalmData& HandData::addNewPalm() {
|
||||
_palms.push_back(PalmData(this));
|
||||
return _palms.back();
|
||||
|
|
|
@ -44,6 +44,7 @@ enum RaveGloveEffectsMode
|
|||
class HandData {
|
||||
public:
|
||||
HandData(AvatarData* owningAvatar);
|
||||
virtual ~HandData();
|
||||
|
||||
// These methods return the positions in Leap-relative space.
|
||||
// To convert to world coordinates, use Hand::leapPositionToWorldPosition.
|
||||
|
|
Loading…
Reference in a new issue