ComLifeTime.ts 257 B

1234567891011
  1. /** @format */
  2. import {ComType, EntityIndex} from '../lib/Const'
  3. import {ECSComponent} from '../lib/ECSComponent'
  4. @ECSComponent(ComType.ComLifeTime)
  5. export class ComLifeTime {
  6. public countDown: number // 生命倒计时
  7. public dirty: boolean //
  8. }