mirror of
https://github.com/Relintai/tile_map_backport.git
synced 2024-11-05 10:11:16 +01:00
12 lines
202 B
C
12 lines
202 B
C
|
|
#ifndef ARRAY_LT_OP_H
|
|
#define ARRAY_LT_OP_H
|
|
|
|
#include "core/array.h"
|
|
#include "core/math/math_defs.h"
|
|
#include "core/variant.h"
|
|
|
|
bool operator<(const Array &p_array_a, const Array &p_array_b);
|
|
|
|
#endif
|