示例#1
0
 public Developer(Transport t)
 {
     this.t = t;
 }
示例#2
0
 public Game(Transport t)
 {
     this.t = t;
 }
示例#3
0
 public Transaction(Transport t)
 {
     this.t = t;
 }
示例#4
0
 public Block(Transport t)
 {
     this.t = t;
 }
示例#5
0
 public Address(Transport t)
 {
     this.t = t;
 }
示例#6
0
 public Player(Transport t)
 {
     this.t = t;
 }
示例#7
0
 public Bitcoin(Transport t)
 {
     Address = new Address(t);
     Transaction = new Transaction(t);
     Block = new Block(t);
 }