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;
        }