Zepheus.Zone.CommandHandler.IsGay C# (CSharp) Метод

IsGay() приватный Метод

private IsGay ( ZoneCharacter character ) : void
character Zepheus.Zone.Game.ZoneCharacter
Результат void
        private void IsGay(ZoneCharacter character, params string[] param)
        {
            ZoneClient otherclient = ClientManager.Instance.GetClientByName(param[1]);
            if (otherclient == null || otherclient.Character == null)
            {
                character.DropMessage("Character not found.");
            }
            ZoneCharacter other = otherclient.Character;

            Question question = new Question("Are you gay?", new QuestionCallback(AnswerGay), character);
            question.Add("Yes", "No", "Boobs!");
            other.Question = question;
            question.Send(other);
        }