fix: add missing <algorithm> include for std::clamp (Windows build)

This commit is contained in:
Kelsi 2026-03-28 11:51:34 -07:00
parent b9ac3de498
commit 99ac31987f

View file

@ -3,6 +3,7 @@
#include "rendering/camera.hpp"
#include "core/input.hpp"
#include <SDL2/SDL.h>
#include <algorithm>
#include <functional>
#include <optional>