bulletItem.ts 348 B

1234567891011121314151617181920
  1. interface IBulletItem {
  2. travel: number;
  3. param: string;
  4. speed: string;
  5. end: string;
  6. volume: string;
  7. effect1: number;
  8. bullet2: string;
  9. cd: number;
  10. }
  11. export class BulletItem {
  12. id: string;
  13. data: IBulletItem;
  14. constructor(id, data) {
  15. this.id = id;
  16. this.data = data;
  17. }
  18. }