mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-15 01:27:36 +01:00
12 lines
163 B
C
12 lines
163 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct gfx_config {
|
|
bool enable;
|
|
bool windowed;
|
|
bool framed;
|
|
};
|
|
|
|
void gfx_hook_init(const struct gfx_config *cfg);
|