mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-29 07:20:19 +00:00
...
This commit is contained in:
parent
3f482aab6c
commit
53b01a9efb
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ namespace SanAndreasUnity.Commands
|
||||||
{
|
{
|
||||||
public static CommandManager Singleton { get; private set; }
|
public static CommandManager Singleton { get; private set; }
|
||||||
|
|
||||||
readonly Dictionary<string, CommandInfo> m_registeredCommands = new Dictionary<string, CommandInfo>();
|
readonly Dictionary<string, CommandInfo> m_registeredCommands =
|
||||||
|
new Dictionary<string, CommandInfo>(System.StringComparer.InvariantCulture);
|
||||||
|
|
||||||
public IEnumerable<string> RegisteredCommands => m_registeredCommands.Keys;
|
public IEnumerable<string> RegisteredCommands => m_registeredCommands.Keys;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue