Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Max()
[1/2]
static void Microsoft.Xna.Framework.Vector2.Max
(
ref
Vector2
value1
,
ref
Vector2
value2
,
out
Vector2
result
)
inline
static
Definition at line
195
of file
Vector2.cs
.
196
{
197
result.X = ((value1.X > value2.X) ? value1.X : value2.
X
);
198
result.Y = ((value1.Y > value2.Y) ? value1.Y : value2.
Y
);
199
}
Microsoft.Xna.Framework.Vector2.X
float X
Definition
Vector2.cs:14
Microsoft.Xna.Framework.Vector2.Y
float Y
Definition
Vector2.cs:17
Microsoft
Xna
Framework
Vector2
Generated by
1.10.0