gameprogcpp / code

Game Programming in C++ Code
Other
1.03k stars 355 forks source link

added <algorithm> and <limits> includes #49

Closed CaptainMeatball closed 2 years ago

CaptainMeatball commented 2 years ago

The use of std::numeric_limits, std::min_element(), std::min(), and std::max, require the inclusion of "algorithm" and "limits"

(my first pull request so if I'm doing this wrong I apologize.)

chalonverse commented 2 years ago

Thanks!