コード例 #1
0
ファイル: GameView.cs プロジェクト: manu138/QA_ID_Taller
    public void Tick()
    {
        if (_isShipReady)
        {
            _shipController.CaptureInput();
            _enemyController.CaptureInput();
        }

        _isShipReady = _shipController.AnimateTankStep();
    }