mhf-server/Mhf.Cli/Command/Commands/DecryptCommand.cs

20 lines
534 B
C#
Raw Normal View History

2019-11-24 19:43:35 +08:00
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";
}
}