Exemple #1
0
 public LabTile(TiledImage <ArgbPixel, byte, LabTile> parent, TileCoordinate location) : base(parent, location)
 {
 }
Exemple #2
0
 private static TTile CreateTile(TiledImage <TPixel, TValue, TTile> parent, TileCoordinate coordinate)
 {
     return((TTile)((object)new Tile <TPixel, TValue, TTile>(parent, coordinate)));
 }
Exemple #3
0
 internal Tile(TiledImage <TPixel, TValue, TTile> parent, TileCoordinate coordinate)
 {
     this.Parent     = parent;
     this.Coordinate = coordinate;
 }
 private static LabTile CreateTile(TiledImage <ArgbPixel, byte, LabTile> parent, TileCoordinate location)
 {
     return(new LabTile(parent, location));
 }