Skip to content

Commit

Permalink
Add GetSuggestedCodeNames
Browse files Browse the repository at this point in the history
  • Loading branch information
FeroxRev committed Jul 25, 2016
1 parent 5c8f08b commit 61c2059
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions PokemonGo.RocketAPI/Rpc/Misc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ public async Task<CheckCodenameAvailableResponse> CheckCodenameAvailable(string
});
}

public async Task<GetSuggestedCodenamesResponse> GestSuggestedCodenames()
{
return await PostProtoPayload<Request, GetSuggestedCodenamesResponse>(RequestType.GetSuggestedCodenames, new GetSuggestedCodenamesMessage());
}

public async Task<EchoResponse> SendEcho()
{
return await PostProtoPayload<Request, EchoResponse>(RequestType.Echo, new EchoMessage());
Expand Down

0 comments on commit 61c2059

Please sign in to comment.