flipperzero-firmware/applications/dolphin/helpers/dolphin_deed.c

13 lines
275 B
C
Raw Normal View History

#include "dolphin_deed.h"
static const DolphinDeedWeight dolphin_deed_weights[DolphinDeedMax] = {
{1, 2, 60},
{1, 2, 60},
{1, 2, 60},
{-1, 2, 60},
};
const DolphinDeedWeight* dolphin_deed_weight(DolphinDeed deed) {
return &dolphin_deed_weights[deed];
}