/* RJSelector.h */ #ifndef ROKOJORI_CORE__SELECTOR_H #define ROKOJORI_CORE__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_CORE__SELECTOR_H