mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-15 17:18:01 +00:00
13 lines
275 B
C
13 lines
275 B
C
|
#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];
|
||
|
}
|