#ifndef OPTIONS_H
#define OPTIONS_H

struct Options final {
    const char* name;
    bool fullscreen;
    bool vsync;

    Options(const char* name);
};

#endif