#ifndef RENDERSETTINGS_H
#define RENDERSETTINGS_H

#include "client/math/Vector.h"

struct RenderSettings {
    RenderSettings();
    
    bool useSSAO;
    float testRadius;
    float testBias;
    bool ortho;
    Vector testOrthoCenter;
};

#endif