mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
14 lines
225 B
C
14 lines
225 B
C
#ifndef VM_TASK_H
|
|
#define VM_TASK_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef void (*vm_result_cb_t)(bool);
|
|
|
|
void vm_task_start_story();
|
|
void vm_task_initialize();
|
|
void vm_task_sound_finished();
|
|
|
|
#endif // VM_TASK_H
|