mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-14 08:07:37 +01:00
13 lines
227 B
C
13 lines
227 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
struct unity_config {
|
||
|
bool enable;
|
||
|
wchar_t target_assembly[MAX_PATH];
|
||
|
};
|
||
|
|
||
|
void unity_config_load(struct unity_config *cfg, const wchar_t *filename);
|