#pragma once #include #include namespace math { float clamp(float d, float min, float max); } namespace Utils { std::vector SplitText(const std::string& text, char separator, bool keep_quotes); }