SimpleGameEngine
SimpleGameEngine copied to clipboard
Simple C++ game engine influenced by XNA
Results
2
SimpleGameEngine issues
Sort by
recently updated
recently updated
newest added
``` Vector2& Vector2::operator+=(float amount) { x += amount; x += amount; // whoops. return *this; } ```
Seems like c++ compilers are less permisive now than they used to be?