Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals()

override bool Microsoft.Xna.Framework.Graphics.VertexPositionTexture.Equals ( object obj)
inline

Definition at line 54 of file VertexPositionTexture.cs.

55 {
56 if (obj == null)
57 {
58 return false;
59 }
60 if (obj.GetType() != GetType())
61 {
62 return false;
63 }
64 return this == (VertexPositionTexture)obj;
65 }
VertexPositionTexture(Vector3 position, Vector2 textureCoordinate)

References Microsoft.Xna.Framework.Graphics.VertexPositionTexture.VertexPositionTexture(), and System.obj.