Ejemplo n.º 1
0
 public ICritter Reproduce(ICritter mate)
 {
     return(null);
 }
Ejemplo n.º 2
0
 public CritterBody(ICritter body)
 {
     _body = body;
 }
Ejemplo n.º 3
0
 public OtherCritter(IOtherCritter otherCritter, ICritter me)
 {
     _otherCritter = otherCritter;
     _me           = me;
 }