示例#1
0
文件: Player.cs 项目: xneg/featureban
        private bool TryUnblockSticker()
        {
            var blockedSticker = _stickersBoard.GetBlockedStickerFor(this);

            if (blockedSticker != null)
            {
                blockedSticker.Unblock();
                return(true);
            }

            return(false);
        }