예제 #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);
 }