18 lines
448 B
C++
Executable file
18 lines
448 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Subsystems/WorldSubsystem.h"
|
|
#include "OverlapPair.h"
|
|
#include "OverlapTrackingSubsystem.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UOverlapTrackingSubsystem : public UWorldSubsystem {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
TArray<FOverlapPair> Overlaps;
|
|
|
|
public:
|
|
UOverlapTrackingSubsystem();
|
|
};
|
|
|