From dba9bb8b473c01210e5973b6bf65e91ca6ab5645 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 22 Dec 2019 17:00:48 +0100 Subject: [PATCH] Math: Add Rect(u)i64 using --- include/Nazara/Math/Rect.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/Nazara/Math/Rect.hpp b/include/Nazara/Math/Rect.hpp index edad69493..58e6ed677 100644 --- a/include/Nazara/Math/Rect.hpp +++ b/include/Nazara/Math/Rect.hpp @@ -91,7 +91,9 @@ namespace Nz using Recti = Rect; using Rectui = Rect; using Recti32 = Rect; + using Recti64 = Rect; using Rectui32 = Rect; + using Rectui64 = Rect; template bool Serialize(SerializationContext& context, const Rect& rect, TypeTag>); template bool Unserialize(SerializationContext& context, Rect* rect, TypeTag>);