1
0
mirror of synced 2024-11-24 05:50:12 +01:00
bananatools/gfxhook/gfx.h
2023-01-02 23:39:03 -05: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);