mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
22 lines
528 B
C#
22 lines
528 B
C#
using SabreTools.Logging;
|
|
|
|
// 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?
|
|
namespace SabreTools.DatFiles
|
|
{
|
|
/// <summary>
|
|
/// Represents a format-agnostic DAT
|
|
/// </summary>
|
|
public partial class DatTool
|
|
{
|
|
#region Logging
|
|
|
|
/// <summary>
|
|
/// Logging object
|
|
/// </summary>
|
|
private static readonly Logger logger = new Logger();
|
|
|
|
#endregion
|
|
}
|
|
}
|