mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
13 lines
296 B
C++
13 lines
296 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortTestControllerBase.h"
|
|
#include "FortTestControllerMemoryReport.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortTestControllerMemoryReport : public UFortTestControllerBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortTestControllerMemoryReport();
|
|
};
|
|
|