y_sort.h
1 #ifndef Y_SORT_H
2 #define Y_SORT_H
3 
4 #include "scene/2d/node_2d.h"
5 
6 class YSort : public Node2D {
7  OBJ_TYPE(YSort,Node2D);
8  bool sort_enabled;
9  static void _bind_methods();
10 public:
11 
12  void set_sort_enabled(bool p_enabled);
13  bool is_sort_enabled() const;
14  YSort();
15 };
16 
17 #endif // Y_SORT_H
Definition: y_sort.h:6
Definition: node_2d.h:34