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

23 lines
285 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 BaseRequest {
}
export interface BaseResponse {
}
export interface BaseConf {
}
export interface BaseMessage {
}
/**
* 位置坐标客户端使用放大1000倍后的整数坐标
*/
export interface Position {
x: number;
y: number;
}