27 lines
480 B
C++
27 lines
480 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "HYAutomaticPickUp.h"
|
|
#include "HYMoneyAutoPickUp.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class HWANYOUNG2_API AHYMoneyAutoPickUp : public AHYAutomaticPickUp
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
AHYMoneyAutoPickUp();
|
|
|
|
void Collect_Implementation(APlayerController* Controller) override;
|
|
|
|
protected:
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
|
int32 Value;
|
|
|
|
};
|