Rewrote AudioClient, fixed several async issues, removed most sealed keywords.

This commit is contained in:
RogueException
2016-01-19 08:31:45 -04:00
parent fab54563e9
commit 0db0675cb5
135 changed files with 856 additions and 566 deletions

View File

@@ -11,13 +11,13 @@
/// <summary> Catches all remaining text as a single optional parameter. </summary>
Unparsed
}
public sealed class CommandParameter
public class CommandParameter
{
public string Name { get; }
public int Id { get; internal set; }
public ParameterType Type { get; }
public CommandParameter(string name, ParameterType type)
internal CommandParameter(string name, ParameterType type)
{
Name = name;
Type = type;