mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
61 lines
1.3 KiB
C#
61 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SabreTools
|
|||
|
|
{
|
|||
|
|
public partial class RombaSharp
|
|||
|
|
{
|
|||
|
|
#region Init Methods
|
|||
|
|
|
|||
|
|
private static void InitArchive(List<string> inputs, bool onlyNeeded)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: archive");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitBuild(List<string> inputs)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: build");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitDiffDat(string newdat)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: diffdat");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitDir2Dat(List<string> inputs)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: dir2dat");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitFixdat(List<string> inputs)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: fixdat");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitLookup(List<string> inputs)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: lookup");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitMiss(List<string> inputs)
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: miss");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitPurgeBackup()
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: purge-backup");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void InitPurgeDelete()
|
|||
|
|
{
|
|||
|
|
_logger.User("This feature is not yet implemented: purge-delete");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|