[SimpleSort] Create mini regions for code blocks

This commit is contained in:
Matt Nadareski
2016-09-17 18:03:55 -07:00
parent aabb44fb33
commit df3bc65cf8

View File

@@ -295,6 +295,8 @@ namespace SabreTools.Helper
{ {
bool success = true; bool success = true;
#region Find all files
// Create a list of just files from inputs // Create a list of just files from inputs
_logger.User("Finding all files..."); _logger.User("Finding all files...");
List<string> files = new List<string>(); List<string> files = new List<string>();
@@ -333,7 +335,10 @@ namespace SabreTools.Helper
}); });
_logger.User("Finding files complete!"); _logger.User("Finding files complete!");
#endregion
// TODO: The below code does NOT check for headerless files as well. This is a problem. // TODO: The below code does NOT check for headerless files as well. This is a problem.
#region Get source file information
// Now loop through all of the files and check them, DFD style // Now loop through all of the files and check them, DFD style
_logger.User("Getting source file information..."); _logger.User("Getting source file information...");
@@ -415,6 +420,16 @@ namespace SabreTools.Helper
} }
_logger.User("Getting source file information complete!"); _logger.User("Getting source file information complete!");
#endregion
#region Find all files to rebuild and bucket by game
#endregion
#region Rebuild all files
#endregion
return success; return success;
} }