RoveSoSimulator
Loading...
Searching...
No Matches
SimHUDWidget.h
1#pragma once
2
3#include "UObject/ObjectMacros.h"
4#include "UI/UIWidget.h"
5#include "SimHUDWidget.generated.h"
6
7class UButton;
8
9UCLASS(Abstract, Blueprintable, BlueprintType)
10class USimHUDWidget : public UUIWidget
11{
12 GENERATED_BODY()
13
14protected:
15 void NativeOnInitialized() override;
16};
Definition SimHUDWidget.h:11