Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     Oxygen        oxs = Oxygen.GetElement();
     Carbon        c   = new Carbon();
     CarbonDioxide co2 = oxs.SustainLife(c); //fabryka ew builder, bo zmniejsza ilość węgla
     HumanCell     h1  = new HumanCell();    //klon
     HumanCell     h2  = h1.Divide();
 }
Ejemplo n.º 2
0
 public override CarbonDioxide Breathe(Oxygen O, Carbon C)
 {
     return(O.SustainLife(C));
 }