Esempio n. 1
0
		public GeneralOptions()
		{
			m_ArtBackground = new ColorDef();
			m_ArtBackground.Color = System.Drawing.Color.White;

			m_Links = new ColorDef();
			m_Links.Color = System.Drawing.Color.BlueViolet;

			m_WindowLocation.X = ( System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Width - 694 ) / 2;
			m_WindowLocation.Y = ( System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Height - 210 ) / 2;

			m_SpeechList = new RecentStringList();
			m_WebList = new RecentStringList();
			// Issue 10 - Update the code to Net Framework 3.5 - http://code.google.com/p/pandorasbox3/issues/detail?id=10 - Smjert
			m_SpeechPresets = new List<string>();
			m_WebPresets = new List<string>();
			// Issue 10 - End
		}
Esempio n. 2
0
		public TravelOptions()
		{
			m_SpawnColor = new ColorDef();
			m_SpawnColor.Color = Color.Green;
		}