コード例 #1
0
 public LabTile(TiledImage <ArgbPixel, byte, LabTile> parent, TileCoordinate location) : base(parent, location)
 {
 }
コード例 #2
0
 private static TTile CreateTile(TiledImage <TPixel, TValue, TTile> parent, TileCoordinate coordinate)
 {
     return((TTile)((object)new Tile <TPixel, TValue, TTile>(parent, coordinate)));
 }
コード例 #3
0
ファイル: Tile.cs プロジェクト: YHZX2013/exchange_diff
 internal Tile(TiledImage <TPixel, TValue, TTile> parent, TileCoordinate coordinate)
 {
     this.Parent     = parent;
     this.Coordinate = coordinate;
 }
コード例 #4
0
 private static LabTile CreateTile(TiledImage <ArgbPixel, byte, LabTile> parent, TileCoordinate location)
 {
     return(new LabTile(parent, location));
 }