2020-12-18 20:15:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "dolphin_deed.h"
|
|
|
|
|
|
|
|
typedef struct Dolphin Dolphin;
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
/* Deed complete notification. Call it on deed completion.
|
2020-12-18 20:15:29 +00:00
|
|
|
* See dolphin_deed.h for available deeds. In futures it will become part of assets.
|
2021-01-08 04:42:48 +00:00
|
|
|
* Thread safe
|
2020-12-18 20:15:29 +00:00
|
|
|
*/
|
|
|
|
void dolphin_deed(Dolphin* dolphin, DolphinDeed deed);
|