mu3hook: Add initial Ongeki hook

This commit is contained in:
Tau
2019-08-30 19:06:32 -04:00
parent 0817ff4596
commit 3b54f30171
6 changed files with 136 additions and 0 deletions

18
mu3hook/config.c Normal file
View File

@ -0,0 +1,18 @@
#include <stddef.h>
#include "board/config.h"
#include "mu3hook/config.h"
#include "platform/config.h"
void mu3_hook_config_load(
struct mu3_hook_config *cfg,
const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
alls_config_load(&cfg->alls, filename);
aime_config_load(&cfg->aime, filename);
}