Exemplo n.º 1
0
        public ModValidator(Stream stream)
        {
            resources = GameResources.Deserialize(GetResourceManifest());
            ExpansionResourcesUsed = new GameResources();

            mod = ContentDirectory.Create(stream);
        }
Exemplo n.º 2
0
        public ModValidator(string path)
        {
            resources = GameResources.Deserialize(GetResourceManifest());
            ExpansionResourcesUsed = new GameResources();

            mod = ContentDirectory.Create(path, false);
        }
Exemplo n.º 3
0
 public CoreValidator(string path)
 {
     core = ContentDirectory.Create(path, true);
 }