mirror of https://github.com/bsnes-emu/bsnes.git
11 lines
163 B
C++
11 lines
163 B
C++
|
namespace hiro {
|
||
|
|
||
|
struct pViewport : pWidget {
|
||
|
Declare(Viewport, Widget)
|
||
|
|
||
|
auto handle() const -> uintptr_t;
|
||
|
auto setDroppable(bool droppable) -> void;
|
||
|
};
|
||
|
|
||
|
}
|