
You can now splatter jello guts all over!
An interesting phenomenon occurred while finishing up section 9 of my C++ game development course.
Consider this code:
// Per class was: Pickup::Pickup(int type);
// But that gave me errors.
Pickup(int type);
// Prepare a new pickup
void setArena(IntRect arena);
The …

