rj-action-library-cpp/RJSelector.h

27 lines
389 B
C
Raw Normal View History

2024-03-24 15:29:50 +00:00
/* 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();
2024-05-05 07:49:41 +00:00
GDVIRTUAL1R( bool, select, Ref<Node>)
2024-03-24 15:29:50 +00:00
public:
RJSelector();
~RJSelector();
};
#endif // ROKOJORI_CORE__SELECTOR_H