Major changes to structure and code

First is the inclusion of two new projects: SabreHelper and SingleGame. SabreHelper is a DLL that contains anything that might be in common between programs (converters, db tools, logging). SingleGame is an experimental program to minimize a DAT for server usage, requested by Kludge.

The new structure represents a cleaner approach to having helper functions in a DLL, making each individual executable smaller and more well-defined.
This commit is contained in:
Matt Nadareski
2016-04-06 00:01:54 -07:00
parent 762c80d280
commit 0f0313d52b
26 changed files with 469 additions and 23 deletions

View File

@@ -14,7 +14,6 @@ namespace DatSplit
private static string extA;
private static string extB;
private static string filename;
private static string _version = "0.3.0.0";
public static void Main(string[] args)
{
@@ -36,7 +35,7 @@ namespace DatSplit
{
doc.LoadXml(File.ReadAllText(filename));
}
catch (XmlException ex)
catch (XmlException)
{
doc.LoadXml(Converters.RomVaultToXML(File.ReadAllLines(filename)).ToString());
}