mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
14 lines
296 B
C++
14 lines
296 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameplayCueManager.h"
|
|
#include "CogSampleGameplayCueManager.generated.h"
|
|
|
|
UCLASS()
|
|
class UCogSampleGameplayCueManager : public UGameplayCueManager
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
virtual bool ShouldAsyncLoadRuntimeObjectLibraries() const override;
|
|
};
|