Skip to content

Commit 8290db7

Browse files
committed
documentation
1 parent 2f2d209 commit 8290db7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Assets/UXF/Scripts/ApplicationHandler.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace UXF
88
public class ApplicationHandler : MonoBehaviour
99
{
1010
/// <summary>
11-
/// Quits the application. This is a handy helper method for use with the onSessionEnd
11+
/// Quits the application. This is a handy helper method for use with the onSessionEnd event.
1212
/// </summary>
1313
public void Quit()
1414
{
@@ -20,12 +20,11 @@ public void Quit()
2020
}
2121

2222
/// <summary>
23-
/// Reloads the currently active scene. This is a handy helper method for use with the onSessionEnd
23+
/// Reloads the currently active scene. This is a handy helper method for use with the onSessionEnd event.
2424
/// </summary>
2525
public void ReloadScene()
2626
{
27-
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
28-
27+
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
2928
}
3029
}
3130
}

0 commit comments

Comments
 (0)