| 20 | |
| 21 | /** 记录一架坦克的开火信息 */ |
| 22 | export interface TankFireInfo { |
| 23 | bulletCount: number |
| 24 | canFire: boolean |
| 25 | cooldown: number |
| 26 | } |
| 27 | |
| 28 | export interface PlayerConfig { |
| 29 | color: TankColor |
nothing calls this directly
no outgoing calls
no test coverage detected