Values returned by `Make_Color` with constant arguments in `InGameUI` class can be `constexpr`. For example ```c++ int border_color = Make_Color(0, 0, 0, 255); ``` to ```c++ constexpr int border_color = Make_Color(0, 0, 0, 255); ```