Skip to content

Commit

Permalink
Fix async method return type
Browse files Browse the repository at this point in the history
  • Loading branch information
nowsprinting committed Sep 19, 2024
1 parent fa6c0dc commit d00d6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Launcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ internal static void ResetEventHandlers()
/// </summary>
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.AfterSceneLoad)]
// ReSharper disable once Unity.IncorrectMethodSignature
public static async UniTask Run()
public static async UniTaskVoid Run()
{
var state = AutopilotState.Instance;
if (!state.IsRunning)
Expand Down

0 comments on commit d00d6a0

Please sign in to comment.