segatools/hooklib/gfx.h
2019-11-05 19:31:51 -05:00

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