19 lines
444 B
C
19 lines
444 B
C
|
// Copyright 2020-2024 CesiumGS, Inc. and Contributors
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CesiumCreditSystemBPLoader.generated.h"
|
||
|
|
||
|
UCLASS()
|
||
|
class UCesiumCreditSystemBPLoader : public UObject {
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
UCesiumCreditSystemBPLoader();
|
||
|
|
||
|
UPROPERTY()
|
||
|
TSoftObjectPtr<UObject> CesiumCreditSystemBP = TSoftObjectPtr<
|
||
|
UObject>(FSoftObjectPath(TEXT(
|
||
|
"Class'/CesiumForUnreal/CesiumCreditSystemBP.CesiumCreditSystemBP_C'")));
|
||
|
};
|