Example #1
0
        public void Update(GameTime gameTime)
        {
            var direction = inputReader.ReadInput();

            MoveHorizontal(direction);

            if (inputReader.ReadFollower())
            {
                Move(mouseReader.ReadInput());
            }


            animatie.Update(gameTime);
        }
 public void Update(GameTime gameTime)
 {
     _animatie.Update(gameTime);
 }
Example #3
0
 public void Update(GameTime gameTime)
 {
     ChangeDirection(gameTime);
     _animatie.Update(gameTime);
 }