예제 #1
0
 public ICritter Reproduce(ICritter mate)
 {
     return(null);
 }
예제 #2
0
 public CritterBody(ICritter body)
 {
     _body = body;
 }
예제 #3
0
 public OtherCritter(IOtherCritter otherCritter, ICritter me)
 {
     _otherCritter = otherCritter;
     _me           = me;
 }