Skip to content

Instantly share code, notes, and snippets.

@JuanLuisGarciaBorrego
Created November 12, 2014 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JuanLuisGarciaBorrego/94aad460a2bf6654118d to your computer and use it in GitHub Desktop.
Save JuanLuisGarciaBorrego/94aad460a2bf6654118d to your computer and use it in GitHub Desktop.
<?php
#OptimizacionMegaDriveDI.php
//Objectos juegos disponibles
$Fifa = new Fifa();
$Sonic = new Sonic('nivelFacil');
//Una sola instancia de MegaDrive
$JugarMegaDrive = new MegaDrive();
//Empiezo jugando al Fifa
$jugarMegaDrive->jugar($Fifa);
//A los 30 minutos cambio al juego Sonic
$jugarMegaDrive->jugar($Sonic);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment