Exemple #1
0
 public Lugguage(Bring b, int c) : base(b, c)
 {
 }
Exemple #2
0
 public Container(Bring b, int c)
 {
     bringMethod = b; capacity = c;
 }
Exemple #3
0
 public Backpack(Bring b, int c) : base(b, c)
 {
 }
Exemple #4
0
 public ItemClass(string name, Bring allowtype, int w, string cmt = "")
 {
     itemName = name; canBring = allowtype; weight = w; comment = cmt;
 }