mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-13 21:20:50 +01:00
3d6669dff1
There's basically no difference at the platform level except for the addition of the ALLS PCBID hook, which is harmless on Nu.
17 lines
285 B
C
17 lines
285 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "board/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
struct mu3_hook_config {
|
|
struct platform_config platform;
|
|
struct aime_config aime;
|
|
};
|
|
|
|
void mu3_hook_config_load(
|
|
struct mu3_hook_config *cfg,
|
|
const wchar_t *filename);
|