Cleanup 7

This commit is contained in:
W2.Wizard
2021-02-21 13:50:25 +01:00
parent d87f0df2a6
commit 597a9c537d
13 changed files with 139 additions and 230 deletions

View File

@@ -688,8 +688,7 @@ namespace FlaxEngine
/// <returns>A vector containing the largest components of the source vectors.</returns>
public static Int3 Max(Int3 left, Int3 right)
{
Int3 result;
Max(ref left, ref right, out result);
Max(ref left, ref right, out Int3 result);
return result;
}