| // Copyright Epic Games, Inc. All Rights Reserved. | |
| /** | |
| * Simple Side Scrolling game UI | |
| * Displays and manages a pickup counter | |
| */ | |
| UCLASS(abstract) | |
| class USideScrollingUI : public UUserWidget | |
| { | |
| GENERATED_BODY() | |
| public: | |
| /** Update the widget's pickup counter */ | |
| UFUNCTION(BlueprintImplementableEvent, Category="UI") | |
| void UpdatePickups(int32 Amount); | |
| }; | |