eco2d/code/common/packets/pkt_send_keystate.h

21 lines
518 B
C
Raw Normal View History

2021-05-05 13:14:02 +00:00
#pragma once
#include "system.h"
#include "packet_utils.h"
typedef struct {
2021-05-08 15:42:47 +00:00
float x;
float y;
2021-05-05 13:14:02 +00:00
uint8_t use;
2021-05-07 20:48:15 +00:00
uint8_t sprint;
2021-05-05 13:14:02 +00:00
} pkt_send_keystate;
2021-05-07 14:43:54 +00:00
size_t pkt_send_keystate_send(uint16_t view_id,
2021-05-08 15:42:47 +00:00
float x,
float y,
2021-05-07 20:48:15 +00:00
uint8_t use,
uint8_t sprint);
2021-05-05 13:14:02 +00:00
size_t pkt_send_keystate_encode(pkt_send_keystate *table);
pkt_desc pkt_send_keystate_desc[];
PKT_HANDLER_PROC(pkt_send_keystate_handler);