mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
21 lines
532 B
C++
21 lines
532 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EAthenaGamePhase.h"
|
|
#include "LTMWidgetBase.h"
|
|
#include "GooseWidgetBase.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UGooseWidgetBase : public ULTMWidgetBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UGooseWidgetBase();
|
|
protected:
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void OnUpdateNumberOfPlanes(int32 FriendlyPlaneCount, int32 EnemyPlaneCount);
|
|
|
|
UFUNCTION(BlueprintCallable)
|
|
void OnGamePhaseChanged(EAthenaGamePhase NewPhase);
|
|
|
|
};
|
|
|