1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-13 21:20:50 +01:00
segatools-hay1tsme/divahook/config.h

24 lines
486 B
C
Raw Normal View History

2019-05-18 05:41:14 +02:00
#pragma once
#include <stddef.h>
2019-11-06 02:11:25 +01:00
#include "amex/amex.h"
2019-05-18 05:41:14 +02:00
2019-11-06 02:11:25 +01:00
#include "board/sg-reader.h"
#include "divahook/slider.h"
2019-11-06 02:11:25 +01:00
#include "platform/platform.h"
2019-05-18 05:41:14 +02:00
struct diva_hook_config {
struct platform_config platform;
2019-05-18 05:41:14 +02:00
struct amex_config amex;
struct aime_config aime;
struct slider_config slider;
2019-05-18 05:41:14 +02:00
};
void slider_config_load(struct slider_config *cfg, const wchar_t *filename);
2019-05-18 05:41:14 +02:00
void diva_hook_config_load(
struct diva_hook_config *cfg,
const wchar_t *filename);