mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-15 01:50:32 -05:00
24 lines
611 B
C++
24 lines
611 B
C++
#ifndef __OPENSPACE_MODULE_SKYBROWSER___RENDERABLESKYBROWSER___H__
|
|
#define __OPENSPACE_MODULE_SKYBROWSER___RENDERABLESKYBROWSER___H__
|
|
|
|
#include <modules/base/rendering/renderableplane.h>
|
|
#include <openspace/documentation/documentation.h>
|
|
|
|
namespace openspace::documentation { struct Documentation; }
|
|
|
|
namespace openspace {
|
|
|
|
class RenderableSkyBrowser : public RenderablePlane
|
|
{
|
|
public:
|
|
RenderableSkyBrowser(const ghoul::Dictionary& dictionary);
|
|
virtual ~RenderableSkyBrowser() = default;
|
|
|
|
private:
|
|
|
|
};
|
|
}
|
|
|
|
#endif // __OPENSPACE_MODULE_SKYBROWSER___RENDERABLESKYBROWSER___H__
|
|
|