# Line Provider

Line Providers are components that are responsible for taking the `Line` objects that the [Dialogue Runner](https://docs.yarnspinner.dev/yarn-spinner-for-godot/godot-csharp/components/dialogue-runner) produces, and fetches the appropriate localized content for that line. Line Providers produce `LocalizedLine` objects, which are sent to the Dialogue Runner's [Dialogue Presenters](https://github.com/YarnSpinnerTool/YSDocs/blob/main/docs/using-yarnspinner-with-godot/components/dialogue-view/README.md).

When a Yarn Spinner Script runs, the Dialogue Runner produces Line objects. These objects contain information **about** the line, but not the text of the line itself. This is because it's the responsibility of the game to load the **user-facing** parts of the line, including the text of the line in the player's current language setting, as well as any other assets that may be needed to present the line, such as audio files for voiceove

Yarn Spinner for Godot comes with a built-in [Text Line Provider](https://docs.yarnspinner.dev/yarn-spinner-for-godot/godot-csharp/components/line-provider/text-line-provider) which that fetches the text of a line, given a language to use.

{% hint style="info" %}
If you don't set up a Line Provider for a Dialogue Runner, it will automatically create a Text Line Provider, and configure it to use the user's current language.
{% endhint %}
