Merge pull request #412 from FiniteReality/issue/304-v2

Implement configurable command node separators
This commit is contained in:
RogueException
2016-12-16 15:38:27 -04:00
committed by GitHub
6 changed files with 64 additions and 34 deletions

View File

@@ -6,5 +6,7 @@
public RunMode DefaultRunMode { get; set; } = RunMode.Sync;
/// <summary> Should commands be case-sensitive? </summary>
public bool CaseSensitiveCommands { get; set; } = false;
/// <summary> The character which splits commands </summary>
public char CommandSplitCharacter { get; set; } = ' ';
}
}