Ed_
18bb578c97
- Enabled a few more plugins - Added clang formatting straight from the GasaGen cpp. - Setup auto-generation of the DevOptionsCache - Messed around with generating widgettree hiearchy from template widget
20 lines
423 B
C++
20 lines
423 B
C++
#pragma once
|
|
|
|
#include "Components/ProgressBar.h"
|
|
|
|
#include "GasaProgressBar.generated.h"
|
|
|
|
UCLASS()
|
|
class GASA_API UGasaProgressBar : public UProgressBar
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
|
|
#pragma region Object
|
|
void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
|
|
|
|
void Serialize(FArchive& Ar) override;
|
|
void Serialize(FStructuredArchive::FRecord Record) override;
|
|
#pragma endregion Object
|
|
};
|