Exemplo n.º 1
0
 public FsController(Memory mem)
 {
     this.files         = new Dictionary <string, int>();
     this.mem           = mem;
     this.BaseItemTypes = new BaseItemTypes(mem, this.FindFile("Data/BaseItemTypes.dat"));
     this.Tags          = new TagsDat(mem, this.FindFile("Data/Tags.dat"));
     this.Stats         = new StatsDat(mem, this.FindFile("Data/Stats.dat"));
     this.Mods          = new ModsDat(mem, this.FindFile("Data/Mods.dat"), Stats, Tags);
 }
Exemplo n.º 2
0
 public FsController(Memory mem)
 {
     this.files = new Dictionary<string, int>();
     this.mem = mem;
     this.BaseItemTypes = new BaseItemTypes(mem, this.FindFile("Data/BaseItemTypes.dat"));
     this.Tags = new TagsDat(mem, this.FindFile("Data/Tags.dat"));
     this.Stats = new StatsDat(mem, this.FindFile("Data/Stats.dat"));
     this.Mods = new ModsDat(mem, this.FindFile("Data/Mods.dat"), Stats, Tags);
 }