This repository has been archived on 2024-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
segatools/mu3hook/config.h

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);