using Vision.Core.Networking; using Vision.Core.Networking.Packet; namespace Vision.Client.Services { public class MovementService : ClientServiceBase { public MovementService(FiestaClient client) : base(client) { } private static readonly NetPacket JumpPacket = new NetPacket(NetCommand.NC_ACT_JUMP_CMD); public void Jump() { JumpPacket.Send(ZoneConnection); } } }