mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 20:58:28 +02:00
22 lines
446 B
C++
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;
|
|
}
|
|
}
|