2021-12-11 11:27:11 +01:00
|
|
|
|
|
|
|
#ifndef ARRAY_LT_OP_H
|
|
|
|
#define ARRAY_LT_OP_H
|
|
|
|
|
|
|
|
#include "core/array.h"
|
|
|
|
#include "core/math/math_defs.h"
|
|
|
|
#include "core/variant.h"
|
|
|
|
|
2021-12-11 11:50:06 +01:00
|
|
|
bool operator<(const Array &p_array_a, const Array &p_array_b);
|
2021-12-11 11:27:11 +01:00
|
|
|
|
|
|
|
#endif
|