AdvancedLauncher.SDK.Model.Config.Profile.Profile C# (CSharp) Метод

Profile() публичный Метод

Initializes a new Profile based on another
public Profile ( Profile p ) : System
p Profile Source
Результат System
        public Profile(Profile p)
        {
            this.Id = p.Id;
            this.Guid = p.Guid;
            this.Name = p.Name;
            this.ImagePath = p.ImagePath;
            this.LaunchMode = p.LaunchMode;
            this.UpdateEngineEnabled = p.UpdateEngineEnabled;
            this.KBLCServiceEnabled = p.KBLCServiceEnabled;
            this.Rotation = new RotationData(p.Rotation);
            this.News = new NewsData(p.News);
            this.GameModel = new GameModel(p.GameModel);
        }

Same methods

Profile::Profile ( ) : System