segatools/hooklib/gfx.h
2020-06-06 22:27:07 +02:00

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);