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

21 lines
468 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AbilitySystemGlobals.h"
#include "LyraAbilitySystemGlobals.generated.h"
class UObject;
struct FGameplayEffectContext;
UCLASS(Config=Game)
class ULyraAbilitySystemGlobals : public UAbilitySystemGlobals
{
GENERATED_UCLASS_BODY()
//~UAbilitySystemGlobals interface
virtual FGameplayEffectContext* AllocGameplayEffectContext() const override;
//~End of UAbilitySystemGlobals interface
};