Files
omath/include/omath/hud/gradient.hpp
T
2026-07-11 18:17:59 +03:00

17 lines
342 B
C++

#pragma once
#include "omath/utility/color.hpp"
namespace omath::hud
{
struct Gradient
{
Color top_left;
Color top_right;
Color bottom_right;
Color bottom_left;
bool animated = false;
float animation_speed = 4.f;
float animation_spread = 0.7f;
};
} // namespace omath::hud