RenderSettings.h 242 B

12345678910111213141516
  1. #ifndef RENDERSETTINGS_H
  2. #define RENDERSETTINGS_H
  3. #include "client/math/Vector.h"
  4. struct RenderSettings final {
  5. RenderSettings();
  6. bool ssao;
  7. bool shadows;
  8. float testRadius;
  9. float testBias;
  10. float bump;
  11. };
  12. #endif