diff --git a/MergeDAT/MergeDAT.cs b/MergeDAT/MergeDAT.cs
index 30bfe47b..8e24dc99 100644
--- a/MergeDAT/MergeDAT.cs
+++ b/MergeDAT/MergeDAT.cs
@@ -29,11 +29,21 @@ namespace SabreTools
private string _date = DateTime.Now.ToString("yyyy-MM-dd");
private Logger _logger;
+ ///
+ /// Create a new MergeDAT object
+ ///
/// A List of Strings representing the DATs or DAT folders to be merged
+ /// Internal name of the DAT
+ /// Description and external name of the DAT
+ /// Category for the DAT
+ /// Version of the DAT
+ /// Author of the DAT
/// True if a DiffDat of all inputs is wanted, false otherwise
/// True if the outputted file should remove duplicates, false otherwise
+ /// True if the date should be omitted from the DAT, false otherwise
+ /// True if the forcepacking="unzip" tag is to be added, false otherwise
+ /// True if a old-style DAT should be output, false otherwise
/// Logger object for console and file output
-
public MergeDAT(List inputs, string name, string desc, string cat, string version, string author,
bool diff, bool dedup, bool noDate, bool forceunpack, bool old, Logger logger)
{