#pragma once inline int clampToPercent(int value) { if (value < 0) return 0; if (value > 100) return 100; return value; }