2024-04-21 06:51:51 -07:00
|
|
|
#pragma once
|
2024-04-12 23:31:49 -07:00
|
|
|
|
|
|
|
#include "Engine/DeveloperSettings.h"
|
|
|
|
|
2024-04-21 06:51:51 -07:00
|
|
|
#include "GasaCommon.h"
|
|
|
|
|
2024-04-12 23:31:49 -07:00
|
|
|
#include "GasaDevOptions.generated.h"
|
|
|
|
|
|
|
|
UCLASS(Config=Game, DefaultConfig, meta=(DisplayName="Gasa"))
|
|
|
|
class GASA_API UGasaDevOptions : public UDeveloperSettings
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
public:
|
2024-04-21 06:51:51 -07:00
|
|
|
|
|
|
|
// NOTE(Ed): Any Soft-References must have their includes defined in GasaDevOptions.cpp
|
|
|
|
// They are used by GasaGen for the GasaDevOptionsCache
|
|
|
|
|
|
|
|
UPROPERTY(Config, EditAnywhere, BlueprintReadOnly, Category="UI")
|
|
|
|
TSoftClassPtr<ACameraMount> Template_PlayerCamera;
|
|
|
|
|
|
|
|
UPROPERTY(Config, EditAnywhere, BlueprintReadOnly, Category="UI")
|
|
|
|
TSoftClassPtr<UUI_HostWidget> Template_HUD_HostUI;
|
|
|
|
|
2024-04-12 23:31:49 -07:00
|
|
|
UPROPERTY(Config, EditAnywhere, BlueprintReadOnly, Category="Tags")
|
|
|
|
FName Tag_GlobalPPV;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace Gasa
|
|
|
|
{
|
|
|
|
extern FName Tag_GlobalPPV;
|
|
|
|
|
|
|
|
FORCEINLINE
|
|
|
|
UGasaDevOptions const* GetDevOptions() {
|
2024-04-21 06:51:51 -07:00
|
|
|
return GetDefault<UGasaDevOptions>();
|
2024-04-12 23:31:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE
|
|
|
|
UGasaDevOptions* GetMutDevOptions() {
|
2024-04-21 06:51:51 -07:00
|
|
|
return GetMutableDefault<UGasaDevOptions>();
|
2024-04-12 23:31:49 -07:00
|
|
|
}
|
|
|
|
}
|