Class rename that accounts for potential changes.

This commit is contained in:
Harrison Deng 2020-05-26 21:07:58 -05:00
parent 2d9f7617aa
commit 0f0395fd63
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ namespace SlatedGameToolkit.Tools.Commands
public bool Execute(IInteractable interactable, string[] args)
{
if (args.Length > 1) return false;
ConsoleProgram.Stop();
Program.Stop();
return true;
}

View File

@ -6,7 +6,7 @@ using SlatedGameToolkit.Tools.System.Interaction;
namespace SlatedGameToolkit.Tools
{
class ConsoleProgram
class Program
{
static private bool running;
static void Main(string[] args)