diff --git a/src/Controllers/Common/ContentController.cs b/src/Controllers/Common/ContentController.cs index a0706af..c26dc24 100644 --- a/src/Controllers/Common/ContentController.cs +++ b/src/Controllers/Common/ContentController.cs @@ -770,6 +770,14 @@ public class ContentController : Controller { return Ok(roomService.NextItemState(item, request.OverrideStateCriteria)); } + [HttpPost] + [Produces("application/xml")] + [Route("V2/ContentWebService.asmx/GetGameData")] + public IActionResult GetGameData() { + // TODO: This is a placeholder + return Ok(new GetGameDataResponse()); + } + [HttpPost] [Produces("application/xml")] [Route("ContentWebService.asmx/GetUserGameCurrency")] diff --git a/src/Schema/GetGameDataResponse.cs b/src/Schema/GetGameDataResponse.cs new file mode 100644 index 0000000..bb26050 --- /dev/null +++ b/src/Schema/GetGameDataResponse.cs @@ -0,0 +1,9 @@ +using System.Xml.Serialization; + +namespace sodoff.Schema; + +[XmlRoot(ElementName = "GetGameDataResponse", Namespace = "")] +[Serializable] +public class GetGameDataResponse +{ +}