using System; using System.Collections.Generic; using System.Text; namespace Darwinbots3 { public static class Core { static Configuration config; public static Configuration Config { get { return Core.config; } set { Core.config = value; } } static ModuleSelection module; public static ModuleSelection Module { get { return Core.module; } set { Core.module = value; } } } }