Example #1
0
        /// <summary>
        /// Constructs a new Cor.AppSettings object.  The Cor.AppSettings object is intented to be instantiated by the
        /// user and provided along with their IApp object to a platform's Cor.ICor implementation in order to
        /// trigger the entry point into a Cor App Framework program.
        /// </summary>
        public AppSettings(String appName)
        {
            this.appName = appName;
            this.logManagerSettings = new LogManagerSettings (this.appName);

            // Default configuration
            this.MouseGeneratesTouches = true;
            this.FullScreen = true;
        }
Example #2
0
 static InternalUtils()
 {
     var settings = new LogManagerSettings ("INTERNAL");
     log = new LogManager (settings);
 }
Example #3
0
 internal LogManager(LogManagerSettings settings)
 {
     this.settings = settings;
 }