Skip to content

Instantly share code, notes, and snippets.

@jesuscampos
Created December 5, 2017 19:57
Show Gist options
  • Save jesuscampos/1d10e11ece7441ca29dd52df63526987 to your computer and use it in GitHub Desktop.
Save jesuscampos/1d10e11ece7441ca29dd52df63526987 to your computer and use it in GitHub Desktop.
class CocheWrapper
{
private Coche _coche;
public void GirarIzquierda()
{
MyLog.write("Girar izquierda");
_coche.GirarIzquierda();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment