14 lines
199 B
C++
14 lines
199 B
C++
#if defined(Hiro_Viewport)
|
|
|
|
namespace hiro {
|
|
|
|
struct pViewport : pWidget {
|
|
Declare(Viewport, Widget)
|
|
|
|
auto handle() const -> uintptr_t;
|
|
auto setDroppable(bool droppable) -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|