SetRiverPath() public method

public SetRiverPath ( River river ) : void
river River
return void
コード例 #1
0
	public void AddTile(Tile tile)
	{
		tile.SetRiverPath (this);
		Tiles.Add (tile);
	}	
コード例 #2
0
 public void AddTile(Tile tile)
 {
     tile.SetRiverPath(this);
     Tiles.Add(tile);
 }
コード例 #3
0
ファイル: River.cs プロジェクト: mc-carthy/worldGenerator
 public void AddTile(Tile t)
 {
     t.SetRiverPath(this);
     tiles.Add(t);
 }