unitysamples / LyraStarterGame /Source /LyraGame /AbilitySystem /LyraAbilitySystemGlobals.h
Alexhas2's picture
Add files using upload-large-folder tool
1e67697 verified
Raw
History Blame Contribute Delete
488 Bytes
// 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
};