/* RJSelector.h */ #ifndef ROKOJORI__SELECTOR_H #define ROKOJORI__SELECTOR_H #include "scene/main/node.h" #include "core/io/resource.h" class RJSelector : public Resource { GDCLASS(RJSelector, Resource); protected: static void _bind_methods(); GDVIRTUAL1R( bool, select, Ref) public: RJSelector(); ~RJSelector(); }; #endif // ROKOJORI__SELECTOR_H