GameGraphics.GraphicsObject.SetX C# (CSharp) Method

SetX() public method

Sets the X location of the GraphicsObject
public SetX ( float x ) : void
x float the X location to be given to the object
return void
        public void SetX(float x)
        {
            this.x = x;
        }