public void GolpeDeLaVida(Humano context) { Console.WriteLine("<Pasan cosas...>"); if (--this.resistencia == 0) { context.setEstadoDeAnimo(new Infeliz()); } }
static void Main(string[] args) { Console.WriteLine("<State of life>"); Humano h = new Humano(); h.Hablar(); h.Vivir(); h.Hablar(); h.Vivir(); h.Hablar(); h.Vivir(); h.Hablar(); }
public void GolpeDeLaVida(Humano context) { Console.WriteLine("<Pasan cosas... pero ya no le afectan...>"); }