overte-HifiExperiments/libraries/avatars/src/Referential.cpp
2014-07-30 16:50:25 -07:00

22 lines
446 B
C++

//
// Referential.cpp
//
//
// Created by Clement on 7/30/14.
// Copyright 2014 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#include "Referential.h"
Referential::Referential(AvatarData* avatar) :
_isValid(true),
_avatar(avatar)
{
if (_avatar == NULL) {
_isValid = false;
return;
}
}