1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 15:47:19 +08:00

Add missing nullability flag on CreateAccount return value

This commit is contained in:
Dean Herbert 2021-02-15 17:02:07 +09:00
parent 9ad38ab20e
commit 3562fddc27

View File

@ -111,6 +111,6 @@ namespace osu.Game.Online.API
/// <param name="username">The username to create the account with.</param>
/// <param name="password">The password to create the account with.</param>
/// <returns>Any errors encoutnered during account creation.</returns>
RegistrationRequest.RegistrationRequestErrors CreateAccount(string email, string username, string password);
RegistrationRequest.RegistrationRequestErrors? CreateAccount(string email, string username, string password);
}
}