ComDizzy.ts 273 B

1234567891011
  1. /** @format */
  2. import {ComType, EntityIndex} from '../lib/Const'
  3. import {ECSComponent} from '../lib/ECSComponent'
  4. @ECSComponent(ComType.ComDizzy)
  5. export class ComDizzy {
  6. public countDown: number // 晕眩动画剩余时间
  7. public dirty: boolean // 在晕眩中
  8. }