Esempio n. 1
0
 public CustomGame(string title, DirectoryInfo location, string saves, string ignores, XmlDocument doc)
     : base(doc)
 {
     this.Title = title;
     Name =  prepareGameName(title);
     this.Type = GameType.game;
     CustomGameVersion version = new CustomGameVersion(this, location, saves, ignores);
     this.Versions.Add(version);
 }
Esempio n. 2
0
        public CustomGame(string title, DirectoryInfo location, string saves, string ignores, XmlDocument doc)
            : base(doc)
        {
            this.Title = title;
            Name       = prepareGameName(title);
            this.Type  = GameType.game;
            CustomGameVersion version = new CustomGameVersion(this, location, saves, ignores);

            this.Versions.Add(version);
        }
Esempio n. 3
0
 public CustomGameEntry(CustomGameVersion ver)
     : base(ver)
 {
     this.Detect();
 }