Files
SabreTools/SabreTools.DatFiles/DatTool.cs

22 lines
531 B
C#
Raw Normal View History

2020-12-10 10:39:39 -08:00
using SabreTools.Logging;
// TODO: What sort of internal state should this have? Would a single DatFile be appropriate?
// TODO: How much of the stuff currently in DatFile should be moved here?
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
}
}