Exemplo n.º 1
0
 protected virtual void OnApocalypsisBegan(ApocalypsisEventArgs e)
 {
     if (ApocalypsisEvent != null)
     {
         ApocalypsisEvent(this, e);
     }
 }
Exemplo n.º 2
0
 public void CarryChaos()
 {
     ApocalypsisEventArgs args = new ApocalypsisEventArgs();
     Console.WriteLine("*earthquake, million demons began carry the chaos in the name of Satan*");
     args.Damage = 10;
     OnApocalypsisBegan(args);
 }
Exemplo n.º 3
0
        public void CarryChaos()
        {
            ApocalypsisEventArgs args = new ApocalypsisEventArgs();

            Console.WriteLine("*earthquake, million demons began carry the chaos in the name of Satan*");
            args.Damage = 10;
            OnApocalypsisBegan(args);
        }
Exemplo n.º 4
0
 public override void React(ApocalypsisEventArgs e)
 {
     this.Health -= e.Damage;
     if (this.Age >= 50)
     {
         Console.WriteLine("{0}: I'm too old to interrupt...", this.Name);
     }
     else
     {
         Console.WriteLine("{0}: I have to protect my nest!", this.Name);
     }
 }
Exemplo n.º 5
0
 protected virtual void OnApocalypsisBegan(ApocalypsisEventArgs e)
 {
     if (ApocalypsisEvent != null)
         ApocalypsisEvent(this, e);
 }
Exemplo n.º 6
0
 public virtual void React(ApocalypsisEventArgs e)
 {
     Console.WriteLine("{0}: We'll gonna die!", this.Name);
 }
Exemplo n.º 7
0
 public override void React(ApocalypsisEventArgs e)
 {
     Console.WriteLine("{0}: Roaaarr!", this.Name);
 }
Exemplo n.º 8
0
 public override void React(ApocalypsisEventArgs e)
 {
     Console.WriteLine("{0}: Oh no! Transformation into stone!", this.Name);
     this.Transform();
 }
Exemplo n.º 9
0
 public virtual void React(ApocalypsisEventArgs e)
 {
     Console.WriteLine("{0}: We'll gonna die!", this.Name);
 }
Exemplo n.º 10
0
 public static void ReactionOfAnimals(object sender, ApocalypsisEventArgs e)
 {
     react(e);
 }
Exemplo n.º 11
0
 public override void React(ApocalypsisEventArgs e)
 {
     this.Health -= e.Damage;
     Console.WriteLine("{0}: I have to save my forest!", this.Name);
 }
Exemplo n.º 12
0
 public static void ReactionOfAnimals(object sender, ApocalypsisEventArgs e)
 {
     react(e);
 }
Exemplo n.º 13
0
 public override void React(ApocalypsisEventArgs e)
 {
     Console.WriteLine("{0}: Oh, Apocalypsis is coming! Nehehehe >:D", this.Name);
 }
Exemplo n.º 14
0
 public override void React(ApocalypsisEventArgs e)
 {
     this.Health -= e.Damage;
     Console.WriteLine("{0}: I will battle for my family!", this.Name);
 }