コード例 #1
0
ファイル: PathBlock.cs プロジェクト: Zaldroc/TowerDefense
 public PathBlock(PathBlock block, Vector2 position,PathBlockEnum type)
     : this(position,block.GetTexture(),block.GetScale(),type)
 {
 }
コード例 #2
0
ファイル: PathBlock.cs プロジェクト: Zaldroc/TowerDefense
 public PathBlock(Vector2 position, Texture2D texture,Vector2 scale,PathBlockEnum type)
     : base(position,texture,scale)
 {
     this.type = type;
 }