/// <summary>
        /// Constructor for default values
        /// </summary>
        public ProfileData()
        {
            // main
            this.Name        = "noname";
            this.DataPort    = 6666;
            this.ProcessName = "";

            // graphics
            this.BorderCorrection = new BorderCorrectionData();
            this.ShowCrosshair    = false;
            this.ShowCrosshair3D  = false;
            this.UseGDICapture    = false;
            this.ImageQuality     = 50;
            this.CustomWindow     = false;
            this.CustomWindowSize = new CustomWindowData();

            // cursor
            this.ShowCursor                = false;
            this.ShowCursor3D              = false;
            this.CursorCorrection          = false;
            this.CorsorColorName           = "";
            this.CursorSize                = 5;
            this.CursorCorrectionAdjWidth  = 0;
            this.CursorCorrectionAdjHeight = 0;
        }
        /// <summary>
        /// Constructor for default values
        /// </summary>
        public ProfileData()
        {
            // main
            this.Name = "noname";
            this.DataPort = 6666;
            this.ProcessName = "";

            // graphics
            this.BorderCorrection = new BorderCorrectionData();
            this.ShowCrosshair = false;
            this.UseGDICapture = false;
            this.ImageQuality = 50;
            this.CustomWindow = false;
            this.CustomWindowSize = new CustomWindowData();

            // cursor
            this.ShowCursor = false;
            this.CursorCorrection = false; 
            this.CorsorColorName = "";
            this.CursorSize = 5;
            this.CursorCorrectionAdjWidth = 0;
            this.CursorCorrectionAdjHeight = 0;

            // SHader
            this.ShaderName = "";
            this.UseShader = false;
        }