コード例 #1
0
 public Developer(Transport t)
 {
     this.t = t;
 }
コード例 #2
0
ファイル: Game.cs プロジェクト: imclab/coinding-api-unity
 public Game(Transport t)
 {
     this.t = t;
 }
コード例 #3
0
 public Transaction(Transport t)
 {
     this.t = t;
 }
コード例 #4
0
ファイル: Block.cs プロジェクト: imclab/coinding-api-unity
 public Block(Transport t)
 {
     this.t = t;
 }
コード例 #5
0
ファイル: Address.cs プロジェクト: imclab/coinding-api-unity
 public Address(Transport t)
 {
     this.t = t;
 }
コード例 #6
0
ファイル: Player.cs プロジェクト: imclab/coinding-api-unity
 public Player(Transport t)
 {
     this.t = t;
 }
コード例 #7
0
ファイル: Bitcoin.cs プロジェクト: imclab/coinding-api-unity
 public Bitcoin(Transport t)
 {
     Address = new Address(t);
     Transaction = new Transaction(t);
     Block = new Block(t);
 }