CSC8503_Advanced_Game_Technologies / CSC8503 / CSC8503Common / PlayerObject.cpp
PlayerObject.cpp
Raw
#include "PlayerObject.h"


int PlayerObject::PickUpItem(GameObject* object, int bonusValue) {
	AddPointsCollected(bonusValue);
	return pickedUpItems++;
}