Math: Added Vector[2|3|4](u)i64 typedefs

This commit is contained in:
Lynix
2019-03-16 15:40:52 +01:00
parent cdf9611080
commit c2a44f7616
4 changed files with 7 additions and 0 deletions

View File

@@ -109,7 +109,9 @@ namespace Nz
using Vector2i = Vector2<int>;
using Vector2ui = Vector2<unsigned int>;
using Vector2i32 = Vector2<Int32>;
using Vector2i64 = Vector2<Int64>;
using Vector2ui32 = Vector2<UInt32>;
using Vector2ui64 = Vector2<UInt64>;
template<typename T> bool Serialize(SerializationContext& context, const Vector2<T>& vector, TypeTag<Vector2<T>>);
template<typename T> bool Unserialize(SerializationContext& context, Vector2<T>* vector, TypeTag<Vector2<T>>);