conworlds

view src/gameopt.h @ 22:5f53272ff612

removed the vr wrapper and added an external dependency to libgoatvr
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 29 Aug 2014 07:44:26 +0300
parents
children
line source
1 #ifndef GAMEOPT_H_
2 #define GAMEOPT_H_
4 struct GameOption {
5 bool vr;
6 char *vr_module;
7 bool stereo;
9 GameOption();
10 };
12 extern GameOption opt;
14 bool parse_args(int argc, char **argv);
16 #endif // GAMEOPT_H_