コード例 #1
0
ファイル: Game1.cs プロジェクト: xnafan/Raycasting
 protected override void Update(GameTime gameTime)
 {
     base.Update(gameTime);
     GetInput();
     _playerMover.Update(gameTime, _player);
     _renderer.Update(gameTime);
 }
コード例 #2
0
        private void Update()
        {
            _bulletLanuncher.Update();
            _mover.Update();

            UpdateSelectInventory();
        }
コード例 #3
0
 protected void Update()
 {
     _playerMover.Update();
     _playerBoundsChecker.Update();
     _playerShooter.Update();
 }