dolphin_deed.c 336 B

1234567891011121314
  1. #include "dolphin_deed.h"
  2. #include <furi.h>
  3. static const DolphinDeedWeight dolphin_deed_weights[DolphinDeedMax] = {
  4. {1, -1, 60},
  5. {1, -1, 60},
  6. {1, -1, 60},
  7. {-1, 1, 60},
  8. };
  9. const DolphinDeedWeight* dolphin_deed_weight(DolphinDeed deed) {
  10. furi_assert(deed < DolphinDeedMax);
  11. return &dolphin_deed_weights[deed];
  12. }