[client] added ability to pass options to renderers

This commit is contained in:
Geoffrey McRae
2017-12-17 20:32:44 +11:00
parent deee61efa9
commit f3e19b743c
2 changed files with 25 additions and 5 deletions

View File

@@ -38,10 +38,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
typedef struct LG_RendererParams
{
TTF_Font * font;
bool showFPS;
bool resample;
bool vsync;
int argc;
const char ** argv;
TTF_Font * font;
bool showFPS;
bool resample;
bool vsync;
}
LG_RendererParams;