Skip to content

Commit

Permalink
Updates parameter names for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
joefspiro committed Jan 13, 2023
1 parent ec2bc50 commit 9c8fa60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Assets/Hamster/Scripts/MainGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,16 178,16 @@ private void SetRemoteConfigDefaults()
throw new System.NotImplementedException();
}

// (Re)fetches Remote Config values and pass down the onFetchAndActivateCompletedSuccesfully callback.
// (Re)fetches Remote Config values and pass down the onFetchAndActivateSuccessful callback.
// Called during the initialization flow but can also be called indepedently.
public void FetchRemoteConfig(System.Action onFetchAndActivateCompletedSuccesfully)
public void FetchRemoteConfig(System.Action onFetchAndActivateSuccessful)
{
throw new System.NotImplementedException();
}

// The final method in the initialization flow that will activate fetched values
// and on Success will call onFetchAndActivateCompletedSuccesfully.
private void ActivateRetrievedRemoteConfigValues(System.Action onFetchAndActivateCompletedSuccesfully)
// and on Success will call onFetchAndActivateSuccessful.
private void ActivateRetrievedRemoteConfigValues(System.Action onFetchAndActivateSuccessful)
{
throw new System.NotImplementedException();
}
Expand Down

0 comments on commit 9c8fa60

Please sign in to comment.