Files
UnrealEngine/Samples/Games/Lyra/Source/LyraGame/AbilitySystem/LyraAbilitySystemGlobals.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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
};