HelpInfo genericized & added to stock RunUO with modifications to Docs to reduce code duplication

This commit is contained in:
asayre 2006-06-19 08:33:54 +00:00
parent 27ad37a7c9
commit 0889404d83
2 changed files with 425 additions and 3 deletions

View file

@ -1450,7 +1450,7 @@ namespace Server.Commands
#region Commands
private class DocCommandEntry
public class DocCommandEntry
{
private AccessLevel m_AccessLevel;
private string m_Name;
@ -1474,7 +1474,7 @@ namespace Server.Commands
}
}
private class CommandEntrySorter : IComparer<DocCommandEntry>
public class CommandEntrySorter : IComparer<DocCommandEntry>
{
public int Compare( DocCommandEntry a, DocCommandEntry b )
{
@ -1662,7 +1662,7 @@ namespace Server.Commands
}
}
private static void Clean( List<CommandEntry> list )
public static void Clean( List<CommandEntry> list )
{
for( int i = 0; i < list.Count; ++i )
{