MsgGameAction.ts 267 B

123456789
  1. import { PlayerState } from "../../../game/state/PlayerState";
  2. import { GameAction } from "../../../types/GameAction";
  3. /** 服务器广播玩家控制数据 */
  4. export interface MsgGameAction {
  5. state: GameAction,
  6. sn: number,
  7. players: Array<PlayerState>
  8. }