Server.GameObject.updatePosition C# (CSharp) 메소드

updatePosition() 공개 메소드

updatePosition() updates the GameObjects position based off of its current speed.
At this time, function is not called. In the future, this method might handle all movement for the GameObjects
public updatePosition ( ) : void
리턴 void
        public virtual void updatePosition()
        {
            x += speedX;
            y += speedY;
        }