mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-06 08:08:35 +08:00
20 lines
534 B
C#
20 lines
534 B
C#
![]() |
using Mhf.Cli.Argument;
|
|||
|
using Mhf.Server.Packet;
|
|||
|
using Mhf.Server.Setting;
|
|||
|
|
|||
|
namespace Mhf.Cli.Command.Commands
|
|||
|
{
|
|||
|
public class DecryptCommand : ConsoleCommand
|
|||
|
{
|
|||
|
public override CommandResultType Handle(ConsoleParameter parameter)
|
|||
|
{
|
|||
|
PacketFactory pf = new PacketFactory(new MhfSetting());
|
|||
|
pf.Test();
|
|||
|
return CommandResultType.Completed;
|
|||
|
}
|
|||
|
|
|||
|
public override string Key => "decrypt";
|
|||
|
public override string Description => "Decrypt packet data";
|
|||
|
}
|
|||
|
}
|