Bumblebee.Setup.Settings.Settings C# (CSharp) Method

Settings() public method

Initializes a default instance of the Settings class with ScreenCapturePath of the current directory.
public Settings ( ) : System
return System
		public Settings()
		{
			ScreenCapturePath = Environment.CurrentDirectory;
			CaptureScreenOnVerificationFailure = false;
		}
Settings