-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
67 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using CliFx; | ||
using CliFx.Attributes; | ||
using CliFx.Infrastructure; | ||
using JetBrains.Annotations; | ||
|
||
namespace Tomat.FNB.Commands.TMOD; | ||
|
||
[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
[Command("tmod pack", Description = "Packs a directory into a .tmod file archive")] | ||
public sealed class TmodPackCommand : ICommand { | ||
public ValueTask ExecuteAsync(IConsole console) { | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
// using System; | ||
// using System.Threading.Tasks; | ||
// using CliFx; | ||
// using CliFx.Attributes; | ||
// using CliFx.Infrastructure; | ||
// using JetBrains.Annotations; | ||
// | ||
// namespace Tomat.FNB.Commands.TMOD; | ||
// | ||
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
// [Command("tmod pack", Description = "Packs a directory into a .tmod file archive")] | ||
// public sealed class TmodPackCommand : ICommand { | ||
// public ValueTask ExecuteAsync(IConsole console) { | ||
// throw new NotImplementedException(); | ||
// } | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using CliFx; | ||
using CliFx.Attributes; | ||
using CliFx.Infrastructure; | ||
using JetBrains.Annotations; | ||
|
||
namespace Tomat.FNB.Commands.XNB; | ||
|
||
[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
[Command("xnb extract", Description = "Extracts an XNB file or directory or XNB files into their original formats")] | ||
public sealed class XnbExtractCommand : ICommand { | ||
public ValueTask ExecuteAsync(IConsole console) { | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
// using System; | ||
// using System.Threading.Tasks; | ||
// using CliFx; | ||
// using CliFx.Attributes; | ||
// using CliFx.Infrastructure; | ||
// using JetBrains.Annotations; | ||
// | ||
// namespace Tomat.FNB.Commands.XNB; | ||
// | ||
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
// [Command("xnb extract", Description = "Extracts an XNB file or directory or XNB files into their original formats")] | ||
// public sealed class XnbExtractCommand : ICommand { | ||
// public ValueTask ExecuteAsync(IConsole console) { | ||
// throw new NotImplementedException(); | ||
// } | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using CliFx; | ||
using CliFx.Attributes; | ||
using CliFx.Infrastructure; | ||
using JetBrains.Annotations; | ||
|
||
namespace Tomat.FNB.Commands.XNB; | ||
|
||
[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
[Command("xnb list-formats", Description = "Lists the known formats that can be extracted from XNB files")] | ||
public sealed class XnbListFormatsCommand : ICommand { | ||
public ValueTask ExecuteAsync(IConsole console) { | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
// using System; | ||
// using System.Threading.Tasks; | ||
// using CliFx; | ||
// using CliFx.Attributes; | ||
// using CliFx.Infrastructure; | ||
// using JetBrains.Annotations; | ||
// | ||
// namespace Tomat.FNB.Commands.XNB; | ||
// | ||
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
// [Command("xnb list-formats", Description = "Lists the known formats that can be extracted from XNB files")] | ||
// public sealed class XnbListFormatsCommand : ICommand { | ||
// public ValueTask ExecuteAsync(IConsole console) { | ||
// throw new NotImplementedException(); | ||
// } | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using CliFx; | ||
using CliFx.Attributes; | ||
using CliFx.Infrastructure; | ||
using JetBrains.Annotations; | ||
|
||
namespace Tomat.FNB.Commands.XNB; | ||
|
||
[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
[Command("xnb pack", Description = "Packs a file or directory of files into XNB files")] | ||
public sealed class XnbPackCommand : ICommand { | ||
public ValueTask ExecuteAsync(IConsole console) { | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
// using System; | ||
// using System.Threading.Tasks; | ||
// using CliFx; | ||
// using CliFx.Attributes; | ||
// using CliFx.Infrastructure; | ||
// using JetBrains.Annotations; | ||
// | ||
// namespace Tomat.FNB.Commands.XNB; | ||
// | ||
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)] | ||
// [Command("xnb pack", Description = "Packs a file or directory of files into XNB files")] | ||
// public sealed class XnbPackCommand : ICommand { | ||
// public ValueTask ExecuteAsync(IConsole console) { | ||
// throw new NotImplementedException(); | ||
// } | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters