2024-03-24 15:29:50 +00:00
|
|
|
/* RJSelector.h */
|
|
|
|
|
2024-05-12 16:25:45 +00:00
|
|
|
#ifndef ROKOJORI__SELECTOR_H
|
|
|
|
#define ROKOJORI__SELECTOR_H
|
2024-03-24 15:29:50 +00:00
|
|
|
|
|
|
|
#include "scene/main/node.h"
|
|
|
|
#include "core/io/resource.h"
|
|
|
|
|
|
|
|
class RJSelector : public Resource
|
|
|
|
{
|
|
|
|
GDCLASS(RJSelector, Resource);
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2024-05-05 07:49:41 +00:00
|
|
|
GDVIRTUAL1R( bool, select, Ref<Node>)
|
2024-03-24 15:29:50 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
RJSelector();
|
|
|
|
~RJSelector();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2024-05-12 16:25:45 +00:00
|
|
|
#endif // ROKOJORI__SELECTOR_H
|