Coding a class for pickups
We will code a Pickup
class that has a Sprite
, member as well as other member data and functions. We will add pickups to our game in just a few steps:
- First, we will code the
Pickup.h
file. This will reveal all the details of the member data and the prototypes for the functions. - Then we will code the
Pickup.cpp
file which, of course, will contain the definitions for all the functions of thePickup
class. As we step through it, I will explain exactly how an object of typePickup
will work and be controlled. - Finally, we will use the
Pickup
class in themain
function to spawn them, update them and draw them.
Let's get started with step 1.
Coding the Pickup header file
To make the new header file, right-click Header Files in the ...
Get Beginning C++ Game Programming now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.