#ifndef RENDERSETTINGS_H #define RENDERSETTINGS_H #include "client/math/Vector.h" struct RenderSettings final { RenderSettings(); bool ssao; bool shadows; float testRadius; float testBias; float bump; }; #endif