5#include "CoreMinimal.h"
6#include "UObject/Interface.h"
7#include "ReactsToMatchEvents.generated.h"
9UINTERFACE(BlueprintType)
12 GENERATED_UINTERFACE_BODY()
17 GENERATED_IINTERFACE_BODY()
20 UFUNCTION(BlueprintImplementableEvent, Category =
"Match Events")
21 void OnMatchStarted();
25 virtual
void MatchStarted();
27 UFUNCTION(BlueprintImplementableEvent, Category = "Match Events")
32 virtual
void MatchEnded();
Definition: ReactsToMatchEvents.h:16
Definition: ReactsToMatchEvents.h:11