Esempio n. 1
0
    private void GameLoop()
    {
        if (_playerController.IsGameOver())
        {
            _status = GameStatus.End;
            return;
        }

        _playerController.DirectUpdate();
        _enemyController.DirectUpdate();
    }