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

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

private List ( ZoneCharacter character ) : void
character Zepheus.Zone.Game.ZoneCharacter
Результат void
        private void List(ZoneCharacter character, params string[] param)
        {
            character.DropMessage("Your l33t commands:");
            foreach (var kvp in commands)
            {
                if (kvp.Value.GmLevel <= character.Client.Admin)
                {
                    character.DropMessage("{0} {1}", kvp.Key, string.Join(" ", kvp.Value.Parameters));
                }
            }
        }