Exemplo n.º 1
0
 public void Breathe(IEntityRecord target)
 {
     if (target.HasComponent <Combustible>())
     {
         Console.WriteLine("Firebreathe !!!");
         target.GetComponent <Combustible>().Combust();
     }
 }