Example #1
0
 public BaseOwnerModule(IntegrationProcessManager main)
 {
     mainEntry      = main;
     InitializeTime = DateTime.Now;
     Name           = "base";
     Description    = "The base set of modules that cannot be enabled or disabled by the user.";
 }
Example #2
0
 public BaseOwnerModule(IntegrationProcessManager main)
 {
     mainEntry = main;
     InitializeTime = DateTime.Now;
     Name = "base";
     Description = "The base set of modules that cannot be enabled or disabled by the user.";
 }
Example #3
0
        public ReflectionTest()
        {
            Manager = new IntegrationProcessManager();

            Console.WriteLine("Detected integrations.\n\n");
            foreach (var integrationName in Manager.Configuration.Integrations)
            {
                Console.WriteLine(integrationName.Key + " at " + integrationName.Value);
            }
        }