39 lines
497 B
C++
39 lines
497 B
C++
|
|
/* RJSelector.h */
|
|
|
|
#ifndef ROKOJORI__SELECTOR_H
|
|
#define ROKOJORI__SELECTOR_H
|
|
|
|
#include "./RJGodotHeaders.h"
|
|
#include "scene/main/node.h"
|
|
#include "core/io/resource.h"
|
|
|
|
|
|
|
|
|
|
class RJSelector : public Resource
|
|
{
|
|
GDCLASS( RJSelector, Resource );
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
// selects( Ref<Node> node ) : bool
|
|
GDVIRTUAL1R( bool, selects, Ref<Node> );
|
|
|
|
// Constructor
|
|
RJSelector();
|
|
|
|
// Destructor
|
|
~RJSelector();
|
|
};
|
|
|
|
|
|
#endif // ROKOJORI__SELECTOR_H
|