mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-14 18:47:39 +01:00
19 lines
284 B
C
19 lines
284 B
C
#ifndef __SETTINGS__
|
|
#define __SETTINGS__
|
|
|
|
typedef struct
|
|
{
|
|
bool loop_forever;
|
|
int loop_count;
|
|
double fade_length;
|
|
double fade_delay;
|
|
} Settings;
|
|
|
|
extern Settings vgmstream_cfg;
|
|
|
|
void debugMessage(const char *str);
|
|
void vgmstream_cfg_load();
|
|
void vgmstream_cfg_save();
|
|
|
|
#endif
|