rj-action-library-cpp/RJSelector.h

39 lines
497 B
C
Raw Normal View History

2024-08-02 06:21:30 +00:00
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
2024-08-02 06:21:30 +00:00
#include "./RJGodotHeaders.h"
2024-03-24 15:29:50 +00:00
#include "scene/main/node.h"
#include "core/io/resource.h"
2024-08-02 06:21:30 +00:00
2024-03-24 15:29:50 +00:00
class RJSelector : public Resource
{
2024-08-02 06:21:30 +00:00
GDCLASS( RJSelector, Resource );
2024-03-24 15:29:50 +00:00
protected:
static void _bind_methods();
2024-08-02 06:21:30 +00:00
2024-03-24 15:29:50 +00:00
2024-08-02 06:21:30 +00:00
2024-03-24 15:29:50 +00:00
public:
2024-08-02 06:21:30 +00:00
// selects( Ref<Node> node ) : bool
GDVIRTUAL1R( bool, selects, Ref<Node> );
// Constructor
2024-03-24 15:29:50 +00:00
RJSelector();
2024-08-02 06:21:30 +00:00
// Destructor
~RJSelector();
2024-03-24 15:29:50 +00:00
};
2024-08-02 06:21:30 +00:00
#endif // ROKOJORI__SELECTOR_H