2020-12-10 10:39:39 -08:00
|
|
|
using SabreTools.Logging;
|
|
|
|
|
|
2020-12-10 13:13:54 -08:00
|
|
|
// TODO: Should each of the individual pieces of partial classes be their own classes?
|
|
|
|
|
// TODO: Is a single, consistent internal state needed for this class at all?
|
2020-12-10 10:39:39 -08:00
|
|
|
namespace SabreTools.DatFiles
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a format-agnostic DAT
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class DatTool
|
|
|
|
|
{
|
|
|
|
|
#region Logging
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Logging object
|
|
|
|
|
/// </summary>
|
2020-12-10 11:58:46 -08:00
|
|
|
private static readonly Logger logger = new Logger();
|
2020-12-10 10:39:39 -08:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|