GameGraphics.GraphicsObject.SetY C# (CSharp) Method

SetY() public method

Sets the Y location of the GraphicsObject
public SetY ( float y ) : void
y float the Y location to be given to the object
return void
        public void SetY(float y)
        {
            this.y = y;
        }