diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-12-20 15:08:10 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-12-20 15:08:10 +0100 |
commit | d2da961f3397f0013f91e3131ebf5f298327c7c7 (patch) | |
tree | c2ef0f973c7c6b41b8b2eb6253560850d04b5671 /core/variant | |
parent | 5f641541ead3c583c543d6b1c9323b90464023a1 (diff) | |
parent | 3f469ee4858e559e007a9f812e4d73cea888a23e (diff) | |
download | redot-engine-d2da961f3397f0013f91e3131ebf5f298327c7c7.tar.gz |
Merge pull request #86324 from aaronfranke/really-packed
Add PackedRealArray as an alias for Vector<real_t>
Diffstat (limited to 'core/variant')
-rw-r--r-- | core/variant/variant.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/variant/variant.h b/core/variant/variant.h index 17e701cf66..480f21df98 100644 --- a/core/variant/variant.h +++ b/core/variant/variant.h @@ -70,6 +70,7 @@ typedef Vector<int32_t> PackedInt32Array; typedef Vector<int64_t> PackedInt64Array; typedef Vector<float> PackedFloat32Array; typedef Vector<double> PackedFloat64Array; +typedef Vector<real_t> PackedRealArray; typedef Vector<String> PackedStringArray; typedef Vector<Vector2> PackedVector2Array; typedef Vector<Vector3> PackedVector3Array; |