Skip to content

Commit

Permalink
Expose CommandConsole instance
Browse files Browse the repository at this point in the history
It is actually useful to access this instance from anywhere.
Ideally the owning system should distribute it. This is for the cases where that is not done.
  • Loading branch information
Ecconia committed Mar 17, 2024
1 parent 561336d commit 16bffc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LICC/CommandConsole.cs
Expand Up @@ -14,7 +14,7 @@ namespace LICC
/// </summary>
public sealed class CommandConsole
{
internal static CommandConsole Current { get; private set; }
public static CommandConsole Current { get; private set; }

public event LsfExecutedDelegate LsfExecuted = delegate { };
public event CommandExecutedDelegate CommandExecutedExternal = delegate { };
Expand Down

0 comments on commit 16bffc4

Please sign in to comment.