Advertisement
Raven_Stigald

Untitled

Feb 6th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2.  
  3. #pragma once
  4.  
  5. #include "CoreMinimal.h"
  6. #include "Pickup.h"
  7. #include "BatteryPickup.generated.h"
  8.  
  9. /**
  10.  *
  11.  */
  12. UCLASS()
  13. class TPS_PROTOTYPE_API ABatteryPickup : public APickup
  14. {
  15.     GENERATED_BODY()
  16.  
  17. public:
  18.     // Sets default values for this actor's properties
  19.     ABatteryPickup();
  20.  
  21.     /** Override the WasCollected function - use Implementation because it's a Blueprint Native Event */
  22.     void WasCollected_Implementation() override;
  23.    
  24.    
  25.    
  26.    
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement