constant.ts 178 B

1234567891011121314
  1. export class constant {
  2. public static EnemyPlaneType = {
  3. TYPE1: 1,
  4. TYPE2: 2,
  5. }
  6. public static Combination = {
  7. PLAN1: 1,
  8. PLAN2: 2,
  9. PLAN3: 3
  10. }
  11. }