示例#1
0
    int GetPointPotential(TileInfoStructure point)
    {
        if (!point.CanPourWater())
        {
            return(0);
        }

        return(Settings.WATER_COUNT - point.count);
    }
示例#2
0
 bool CanPour(TileInfoStructure tile)
 {
     return(tile.CanPourWater());
 }