lyra_game_ue/Source/LyraGame/UI/LyraGameViewportClient.h
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01:00

22 lines
472 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CommonGameViewportClient.h"
#include "LyraGameViewportClient.generated.h"
class UGameInstance;
class UObject;
UCLASS(BlueprintType)
class ULyraGameViewportClient : public UCommonGameViewportClient
{
GENERATED_BODY()
public:
ULyraGameViewportClient();
virtual void Init(struct FWorldContext& WorldContext, UGameInstance* OwningGameInstance, bool bCreateNewAudioDevice = true) override;
};