14 #ifndef hifi_MixerAvatar_h
15 #define hifi_MixerAvatar_h
17 #include <AvatarData.h>
19 class ResourceRequest;
21 class MixerAvatar :
public AvatarData {
24 inline MixerAvatar() {}
26 bool getNeedsHeroCheck()
const {
return _needsHeroCheck; }
27 void setNeedsHeroCheck(
bool needsHeroCheck =
true) { _needsHeroCheck = needsHeroCheck; }
29 bool needsIdentityUpdate()
const {
return _needsIdentityUpdate; }
30 void setNeedsIdentityUpdate(
bool value =
true) { _needsIdentityUpdate = value; }
33 bool _needsHeroCheck {
false };
34 bool _needsIdentityUpdate {
false };
38 using MixerAvatarSharedPointer = std::shared_ptr<MixerAvatar>;