nuclear@0: #ifndef OPT_H_ nuclear@0: #define OPT_H_ nuclear@0: nuclear@0: #include "vmath/vmath.h" nuclear@0: nuclear@0: struct Options { nuclear@0: int xres, yres; nuclear@0: bool fullscreen; nuclear@0: bool shadows, reflections; nuclear@0: }; nuclear@0: nuclear@0: extern Options opt; nuclear@0: nuclear@0: bool init_options(int argc, char **argv); nuclear@0: nuclear@0: #endif /* OPT_H_ */