diff options
| author | Kazuo256 | 2016-11-18 18:30:16 -0200 |
|---|---|---|
| committer | Kazuo256 | 2016-11-18 18:45:51 -0200 |
| commit | bf4fda64fd403d589278919cff01c3207164207e (patch) | |
| tree | bed9a1d2244b31ec27a40fa18cda6c6357608379 /core/array.h | |
| parent | 959683c3d8f7aaa7469d5758c7698e0da108b406 (diff) | |
| download | godot-bf4fda64fd403d589278919cff01c3207164207e.tar.gz godot-bf4fda64fd403d589278919cff01c3207164207e.tar.zst godot-bf4fda64fd403d589278919cff01c3207164207e.zip | |
Diffstat (limited to 'core/array.h')
| -rw-r--r-- | core/array.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/array.h b/core/array.h index eb79b0cf3..fb417b6ec 100644 --- a/core/array.h +++ b/core/array.h @@ -67,6 +67,9 @@ public: void insert(int p_pos, const Variant& p_value); void remove(int p_pos); + Variant front() const; + Variant back() const; + void sort(); void sort_custom(Object *p_obj,const StringName& p_function); void invert(); |
