示例#1
0
        public async Task <ActionResult> Destroy([FromRoute] string id)
        {
            await _engineService.Destroy(id);

            Log("destroyed", new GameState {
                GlobalId = id
            });

            return(Ok());
        }