18 lines
435 B
C++
Executable file
18 lines
435 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Subsystems/WorldSubsystem.h"
|
|
#include "DropSpikeTrackingSubsystem.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UDropSpikeTrackingSubsystem : public UWorldSubsystem {
|
|
GENERATED_BODY()
|
|
public:
|
|
UDropSpikeTrackingSubsystem();
|
|
UFUNCTION(BlueprintCallable)
|
|
void IncrementSpikeCount();
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
int32 GetSpikeCount() const;
|
|
|
|
};
|
|
|