mirror of
https://github.com/overte-org/overte.git
synced 2025-07-30 14:20:28 +02:00
29 lines
640 B
C++
29 lines
640 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);
|
|
|
|
virtual void render(RenderArgs* args);
|
|
|
|
virtual Sphere3DOverlay* createClone() const;
|
|
};
|
|
|
|
|
|
#endif // hifi_Sphere3DOverlay_h
|