Пример #1
0
        public async Task <string> Look(string input, Player player)
        {
            //describe the player's current cell
            var description = await _cellLogic.CellDescriptionForPlayer(player);

            await Replicate($"{player.Name} looks around.", player);

            return(description);
        }