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