Files
rougelike-demo/client/assets/scripts/Shared/protocols/MsgReqMove.ts
2025-12-18 16:04:56 +08:00

10 lines
287 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 移动请求消息
*/
export interface MsgReqMove {
/** X坐标放大1000倍后取整服务器内部除以1000作为实际坐标 */
x: number;
/** Y坐标放大1000倍后取整服务器内部除以1000作为实际坐标 */
y: number;
}