12 lines
265 B
C++
Executable file
12 lines
265 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "SoundClassWidget.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class USoundClassWidget : public UUserWidget {
|
|
GENERATED_BODY()
|
|
public:
|
|
USoundClassWidget();
|
|
};
|
|
|