rj-action-library-cpp/RJSelector.h

27 lines
374 B
C++

/* 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<Node>)
public:
RJSelector();
~RJSelector();
};
#endif // ROKOJORI__SELECTOR_H