Cogwheel/Program.cs

13 lines
302 B
C#
Raw Normal View History

2025-01-01 20:43:35 +00:00
// Program.cs
using System.Reflection;
2025-01-01 20:43:35 +00:00
using Cogwheel;
ICogwheelConsole cogwheelConsole = new DeafultCogwheelConsole();
CommandsManager commandsManager = new CommandsManager();
2025-01-01 20:43:35 +00:00
commandsManager.AddAssembly(Assembly.GetExecutingAssembly());
2025-01-01 20:43:35 +00:00
COGWHEEL.Initialize(commandsManager, cogwheelConsole);