overte-lubosz/interface/src/ui/overlays/Sphere3DOverlay.h
2014-11-15 00:21:50 +01:00

29 lines
657 B
C++

//
// Sphere3DOverlay.h
// interface/src/ui/overlays
//
// 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
//
#ifndef hifi_Sphere3DOverlay_h
#define hifi_Sphere3DOverlay_h
#include "Volume3DOverlay.h"
class Sphere3DOverlay : public Volume3DOverlay {
Q_OBJECT
public:
Sphere3DOverlay();
Sphere3DOverlay(const Sphere3DOverlay* Sphere3DOverlay);
~Sphere3DOverlay();
virtual void render(RenderArgs* args);
virtual Sphere3DOverlay* createClone() const;
};
#endif // hifi_Sphere3DOverlay_h