05.Extending the Pickup Class BatteryPickup.h 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 // Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "Pickup.h" #include "BatteryPickup.generated.h" UCLASS() class BATTERYCOLLECTOR_API ABatteryPickup : public APickup { GENERATED_BODY() // Sets default values for this actor's properties public: ABatteryP..