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

◆ Equals()

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

Definition at line 81 of file VertexElement.cs.

82 {
83 if (obj == null)
84 {
85 return false;
86 }
87 if (obj.GetType() != GetType())
88 {
89 return false;
90 }
91 return this == (VertexElement)obj;
92 }
VertexElement(int offset, VertexElementFormat elementFormat, VertexElementUsage elementUsage, int usageIndex)

References Microsoft.Xna.Framework.Graphics.VertexElement.VertexElement().