#pragma once #include inline float RandomFloat(float min, float max) { return min + (max - min) * static_cast(rand() % 100) * 0.01f; }