12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
|
|
/**
|
||
|
|
* 输入消息
|
||
|
|
* Input message
|
||
|
|
*/
|
||
|
|
|
||
|
|
import type { IPlayerInput } from './types';
|
||
|
|
|
||
|
|
export interface MsgInput {
|
||
|
|
/** 玩家输入 | Player input */
|
||
|
|
input: IPlayerInput;
|
||
|
|
}
|