A small library to allow Alexa.NET skills to interact with the Alexa Web Api for Games
using Alexa.NET.WebApiGames;
...
skillRequest.HTMLSupported();
using Alexa.NET.WebApiGames;
...
skillResponse.Response.Directives.Add(new StartDirective(uri, data))
using Alexa.NET.WebApiGames;
...
skillResponse.Response.Directives.Add(new HandleMessageDirective(message))
using Alexa.NET.WebApiGames;
MessageRequest.AddToRequestConverter();
...
if request.Request is MessageRequest messageRequest{
var msg = messageRequest.Message;
}