27 lines
388 B
C++
27 lines
388 B
C++
/* 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();
|
|
|
|
GDVIRTUAL1R(bool, select, Ref<Node>)
|
|
|
|
public:
|
|
|
|
RJSelector();
|
|
~RJSelector();
|
|
|
|
};
|
|
|
|
|
|
#endif // ROKOJORI_CORE__SELECTOR_H
|