12 lines
248 B
C++
Executable file
12 lines
248 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DebrisBase.h"
|
|
#include "DebrisPositioning.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UDebrisPositioning : public UDebrisBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UDebrisPositioning();
|
|
};
|
|
|