Skip to content

Commit

Permalink
feat: ✨ Make ConfigureInitialScene chainable
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Klein committed May 10, 2023
1 parent 18a01ab commit aeb8c6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Visuals/SceneManagementService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ public void LoadScene(TSceneEnum sceneKey) {

}

public object ConfigureInitialScene(TSceneEnum login) {
public SceneManagementService<TSceneEnum> ConfigureInitialScene(TSceneEnum login) {
this.CurrentScene = login;
return this;
}
#endregion
}
Expand Down

0 comments on commit aeb8c6f

Please sign in to comment.