13 lines
No EOL
352 B
C#
13 lines
No EOL
352 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using WingsEmu.Game.Networking;
|
|
|
|
namespace WingsAPI.Game.Extensions.PacketGeneration
|
|
{
|
|
public static class DelayPacketsExtensions
|
|
{
|
|
public static string GenerateDelayPacket(this IClientSession session, int delay, int type, string argument) => $"delay {delay} {type} {argument}";
|
|
}
|
|
} |