forked from Dniel97/segatools
13 lines
180 B
C
13 lines
180 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct gfx_config {
|
|
bool enable;
|
|
bool windowed;
|
|
bool framed;
|
|
int monitor;
|
|
};
|
|
|
|
void gfx_hook_init(const struct gfx_config *cfg);
|