1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-09-24 03:08:20 +02:00
segatools-dniel97/mu3hook/config.h
2020-05-21 00:58:23 +00:00

20 lines
338 B
C

#pragma once
#include <stddef.h>
#include "board/config.h"
#include "hooklib/gfx.h"
#include "platform/config.h"
struct mu3_hook_config {
struct platform_config platform;
struct aime_config aime;
struct gfx_config gfx;
};
void mu3_hook_config_load(
struct mu3_hook_config *cfg,
const wchar_t *filename);