> For the complete documentation index, see [llms.txt](https://infinitypbr.gitbook.io/magic-pig-games/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://infinitypbr.gitbook.io/magic-pig-games/game-modules-4/module-documentation/game-module-lists/gamequestlist.md).

# GameQuestList

## Properties & Variables

<pre class="language-csharp"><code class="lang-csharp"><strong>// Returns true if at least one GameQuest in the list modifies stats.
</strong><strong>public bool ModifiesStats
</strong></code></pre>

## Methods

#### Send an event to the `QuestEventBoard`

```csharp
public void SendEvent(GameQuest gameQuest, QuestStep.QuestStepStatus status)

// Example
var lastQuest = gameQuestList.Last();
gameQuestList.SendEvent(lastQuest, lastQuest.Status);
```
