From 7ce81040e90a475f8a009ea074faf46a5b5e0ca5 Mon Sep 17 00:00:00 2001 From: Ange-Marie MAURIN Date: Fri, 11 Jul 2025 00:54:34 +0200 Subject: [PATCH] and the function --- .../DTFluxCoreSubsystem/Private/DTFluxCoreSubsystem.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/DTFluxCoreSubsystem/Private/DTFluxCoreSubsystem.cpp b/Source/DTFluxCoreSubsystem/Private/DTFluxCoreSubsystem.cpp index 9d9e560..9c30bd6 100644 --- a/Source/DTFluxCoreSubsystem/Private/DTFluxCoreSubsystem.cpp +++ b/Source/DTFluxCoreSubsystem/Private/DTFluxCoreSubsystem.cpp @@ -366,3 +366,12 @@ void UDTFluxCoreSubsystem::LaunchPursuitSequenceFor(const TArray ContestIds } } } + +FOnPursuitSequenceReady& UDTFluxCoreSubsystem::InitPursuit(const TArray Contests) +{ + if (PursuitManager) + { + PursuitManager->LaunchPursuitSequenceFor(Contests); + } + return PursuitManager->OnPursuitSequenceReady; +}